VB.NET 匹配整个单词并替换

发布于 2024-12-07 05:36:56 字数 286 浏览 1 评论 0原文

我试图用另一个字符串替换一个字符串,但问题是该字符串部分匹配其他一些字符串。

例如 -

Dim x as String = "I am Soham"
x = x.Replace("am","xx")

在此替换之后,我只想将单词 am 替换为 xx 但因为我的名字也包含 am 它也被替换。

x 的值为 I xx Sohxx。我怎样才能阻止这个。请帮忙。

I'm trying to replace a string with another but the problem is that the string is matching some other string partially.

For e.g. -

Dim x as String = "I am Soham"
x = x.Replace("am","xx")

After this replace I would only like the word am to replaced with xx but because my name also contains am its also getting replaced.

The value of x is I xx Sohxx. How can I stop this. Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挖鼻大婶 2024-12-14 05:36:57

使用 Regex.Replace 和使用正则表达式\bam\b。在正则表达式中 \b 表示“单词边界”。

Use Regex.Replace and use the regular expression \bam\b. In a regular expression \b means "word boundary".

情栀口红 2024-12-14 05:36:57

你也可以像下面这样写。

X = X.Replace(" am"," xx")

You can write up like as follows also.

X = X.Replace(" am"," xx")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文