以下是我的示例代码 在这里,我需要在最后匹配一个单词Franchise和space,并且只需要替换以空格结尾的单词
模式:末尾有空格的字符串,应该在末尾用空格替换一个'特许经营'。
string pattern="Franchise ";
string textboxvalue= "'All Franchises', **'Franchise '** & First(Fields!FranchiseLabel.Value, 'DigitalPanelList'))";;
Regex.Replace(textBoxValue, pattern,"hello" )
答案 0 :(得分:5)
为什么不使用String.Replace
方法?这是一个非常简单的操作。你不需要Regex
。
textboxvalue = textboxvalue.Replace("Franchise ", "hello");
答案 1 :(得分:0)
使用string的函数:
EndsWith(String)
参考:http://msdn.microsoft.com/en-us/library/system.string.endswith(v=vs.110).aspx