标签: regex
var text = 'word otherword';
我想选择只与'word'匹配的单词。当我简单地使用/word/作为正则表达式模式时,它也会选择'otherword'中的'word'部分。我不需要那个词(在这种情况下是'otherword')。那么我怎样才能用正则表达式选择/匹配'word'字?
/word/
答案 0 :(得分:2)
使用word boundary - \b。
\b
/\bword\b/