gpt4 book ai didi

c# - 我可以在 C# 中将正则表达式与 String.Replace 一起使用吗?

转载 作者:行者123 更新时间:2023-12-03 03:47:33 25 4
gpt4 key购买 nike

例如我有下面的代码 string txt="我有 West、West、West、Western 等字符串。"

我想用其他词替换“west”或“West”。但我不想用西方来取代西方。

  1. 我可以在 string.replace 中使用正则表达式吗?我用了inputText.Replace("(\\sWest.\\s)",temp); 它不起作用。

最佳答案

不,但您可以使用 Regex 类。

替换整个单词(而不是单词的一部分)的代码:

string s = "Go west Life is peaceful there";
s = Regex.Replace(s, @"\bwest\b", "something");

关于c# - 我可以在 C# 中将正则表达式与 String.Replace 一起使用吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2771042/

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