1

我需要从列表中找到一个特定的单词和任何单词。到目前为止,我有这个:

^.*?(apple)(?:\W+\w+){0,30}?\W+(ipad|itunes).*

这匹配“apple”和“ipad”或“itunes”。

但是,如果“ipad”或“itunes”在“apple”之前,则会失败。

任何人都可以建议吗?

4

2 回答 2

1

你应该更好地使用前瞻:

/^(?=.*?\bapple\b)(?=.*?\b(ipad|itunes)\b).*$/i

更新:根据 OP 的评论:Can you advise how my word limit would fit in here? e.g. I must find any from the list within 20 words of apple?

/^(?=.*?\bapple\b)(?=.*?\bapple(\W+\w+){0,20}\b(ipad|itunes)\b).*$/i
于 2013-10-31T09:31:57.330 回答
0

简单版本不起作用(http://jsfiddle.net/xhdBQ/1/)?

var list = ["ipad", "itunes"];
var word = "apple";
list.push(word)

var regex = new RegExp("(" + list.join("|") + ")", "g");
console.log(regex);
console.log("blabla...apple,,safsd ssdfipadaad itunes".match(regex))
于 2013-10-31T09:39:23.057 回答