匹配并替换 javascript 中的整个单词

发布于 2024-09-06 12:27:59 字数 71 浏览 8 评论 0 原文

我有一个文本区域,当我写“想要”时,我想用“两个”替换它。

如何在 javascript 中匹配和替换整个单词?

I have a textarea, and when I write, for example, "want", I want to replace it with "two".

How can I match and replace whole words in javascript?

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

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

发布评论

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

评论(1

满意归宿 2024-09-13 12:27:59

您可以使用单词边界 \b,因此 \bwant\b。但请记住,单词的正则表达式定义可能不适合您。 Javascript 正则表达式将单词边界定义为单词字符 \w(即 [a-zA-Z0-9_])和非单词字符(除了)。

参考文献


单词边界警告示例

  • 有一个 "can't" 中的 >\bcan\b (因为 ' 不是 \w
  • 没有 "love_me" 中的 \blove\b(因为 e_ 都是 \w

You can use the word boundary \b, so \bwant\b. Do keep in mind that the regex definition of a word may not suit you, though. Javascript regex defines word boundaries as the place between a word character \w, which is [a-zA-Z0-9_] and a non-word character (everything except that).

References


Examples of word boundary caveats

  • There's a \bcan\b in "can't" (because ' is not a \w)
  • There's no \blove\b in "love_me"(because e and _ are both \w)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文