gpt4 book ai didi

c# - 使用正则表达式 c# 替换完全匹配的字符串

转载 作者:行者123 更新时间:2023-11-30 17:44:54 24 4
gpt4 key购买 nike

这是我的代码片段:

public static class StringExtensions
{
public static string SafeReplace(this string input, string find, string replace, bool matchWholeWord)
{
string textToFind = matchWholeWord ? string.Format(@"\b{0}\b", find) : find;
return Regex.Replace(input, textToFind, replace);
}
}
selectColumns = selectColumns.SafeReplace("RegistrantData.HomePhone","RegistrantData.HomePhoneAreaCode + '-' + RegistrantData.HomePhonePrefix + '-' + RegistrantData.HomePhoneSuffix", true);

然而,这也会替换字符串“RegistrantData_HomePhone”。我该如何解决这个问题?

最佳答案

你应该转义文本:

string textToFind = matchWholeWord ? string.Format(@"\b{0}\b", Regex.Escape(find)) : Regex.Escape(find);

Regex.Escape将替换(例如).(RegistrantData**.**HomePhone)\.(以及许多其他序列)

这可能是个好主意

return Regex.Replace(input, textToFind, replace.Replace("$", "$$"));

因为 $Regex.Replace 中有特殊含义(参见 Handling regex escape replacement text that contains the dollar character )。请注意,对于替换,您不能使用 Regex.Escape

关于c# - 使用正则表达式 c# 替换完全匹配的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28851966/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com