我需要替换一个字符串,它遵循一个特定的字符串和一些不同的数据.我需要保持开头和中间,只需更换结束.当我尝试下面的代码时,它只替换最后一次出现.我试过切换到非贪婪的比赛,但后来却找不到它.中间可以包含新的行,空格,字母和数字.
String s = "Beginning of story. Keep this sentence. old ending.\n";s += s;s += s;s1 = Regex.Replace(s,@"Beginning of story. ([\s\S]*) old ending.","Beginning of story. " + @"" + " New ending.",RegexOptions.Multiline | RegexOptions.IgnoreCase);The result is this:Beginning of story. Keep this sentence. old ending.Beginning of story. Keep this sentence. old ending.Beginning of story. Keep this sentence. old ending.Beginning of story. Keep this sentence. New ending.
如何更换“旧结局”的每一次出现.
@R_403_6120@ 我认为Kendall正在使用相关链接 a non greedy match,例如s1 = Regex.Replace(s,@"Beginning of story. ([\s\S]*?) old ending.",RegexOptions.Multiline | RegexOptions.IgnoreCase);
应该做的伎俩.
编辑:
您还应该能够将捕获区域内的模式更改为:.*在哪里将匹配除换行符之外的任何字符.
总结以上是内存溢出为你收集整理的c# – 正则表达式替换所有出现次数全部内容,希望文章能够帮你解决c# – 正则表达式替换所有出现次数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)