本文介绍了在字符串中查找特定模式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 限时删除!! Hai, 在一个文本框中我的文字为 "(20/100)+ pay1 * pay2" .it'是一个公式。并存储在特定的 变量中。 string strformula ="(20/100)+ pay1 * pay2" ; 我必须用变量''pay1''的值代替& ''pay2''和 找到该strformula的价值。 可以告诉我如何找到''pay1''和''pay2''变量 strformula。这很紧急并立即回复。 提前致谢。Hai ,in a textbox am having text as"(20/100)+pay1*pay2" .it''s a formula. and stored in a particularvariable.string strformula="(20/100)+pay1*pay2" ;i''ve to substitute the value of the variable ''pay1'' & ''pay2'' andfinding the value of that strformula.can any onr tell me how to find ''pay1'' and ''pay2'' in the variablestrformula. it''s urgent and reply immediately.Thanks in advance.推荐答案 你知道你需要更换什么,并且它不会发生另一种形式的?例如,如果您需要替换pay1,使用 " 5",你需要应付: pay1 + repay1 并避免成为 5 + re5 ? 如果没有,只需使用string.Replace : string changed = original.Replace(" pay1"," 5"); - Jon Skeet - < sk *** @ pobox.com> http://www.pobox.com/~skeet 博客: http: //www.msmvps.com/jon.skeet 如果回复该群组,请不要给我发邮件Do you know exactly what you need to replace, and that it won''t occurin another form? For instance, if you needed to replace "pay1" with"5", would you need to cope with:pay1+repay1and avoid that becoming5+re5?If not, just use string.Replace:string changed = original.Replace ("pay1", "5");--Jon Skeet - <sk***@pobox.com> http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeetIf replying to the group, please do not mail me too 这篇关于在字符串中查找特定模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 1403页,肝出来的..
09-09 01:10