在正则表达式中与单词不相邻的单词?

时间:2012-06-04 07:22:38

标签: javascript regex

我设置了一些不好的词:

'aaa','bbb','ccc'

(坏话也可以,“john”,“paul”,“ringo”)(对不起@cyilan)

我不想立即允许bad word ,然后是另一个/ bad word

aaa后面可以跟一个非坏词,then后跟一个坏词:

  ...aaaRoyibbb...  //ok
  ...cccRoyiaaa...  //ok

   ...aaabbb...// NOT OK
   ...cccbbb...// NOT OK
   ...cccccc...// NOT OK

一个坏词不允许立即跟随另一个/同一个坏词

我尝试了一些正则表达但没有成功..

任何帮助将不胜感激

3 个答案:

答案 0 :(得分:1)

var str = "...aaabbb...";
if(!str.test(/(?:aaa|bbb|ccc){2}/)){
    // passed
}

聊天透露OP真正想要的是:

/^(?!(?:aaa|bbb|ccc)|.*(?:aaa|bbb|ccc){2}|.*(?:aaa|bbb|ccc)$)/

但确实如此:

^(?!(?:aaa|bbb|ccc)\b|.*\b(?:aaa|bbb|ccc)\s+(?:aaa|bbb|ccc)\b|.*\b(?:aaa|bbb|cc‌​c)$)

答案 1 :(得分:1)

match = subject.match(/\b([a-z]{3})(?:(?!\1)|(?=\1))[a-z]+\b/i);
if (match != null) {
    // matched text: match[0]
    // match start: match.index
    // capturing group n: match[n]
} else {
    // Match attempt failed
}

答案 2 :(得分:0)

您正在寻找的解决方案是\ b。 \ b被定义为分词。如果它跟随空格或数字,如果以下文本是字母,则匹配。如果它跟随字母,如果以下不是字母(即不是连续字),则匹配。它可以有效地用作锚标记,如下所示:

\byourword\b

它会匹配:

This is yourword, but not mine.
yourword is found in this sentence.

但它不匹配:

When yourwordis found in other words, this will not match.
And ifyourword is at the end of another word, it will still not match.