我有以下字符串
this is the string and THIS is the word I want
我尝试过使用正则表达式:
var to_search = "is"
var regex = "/\S+(?="+to_search+")/g";
var matches = string.match(regex);
我希望比赛包含“这个”(第二个之后的单词,但是它似乎没有工作)
有什么想法吗?感谢
答案 0 :(得分:1)
regex101.com是测试正则表达式的绝佳网站,它甚至可以为您生成代码。
const regex = /\bis.*(this)/gi;
const str = `this is the string and THIS is the word I want`;
let m;
while ((m = regex.exec(str)) !== null) {
// This is necessary to avoid infinite loops with zero-width matches
if (m.index === regex.lastIndex) {
regex.lastIndex++;
}
// The result can be accessed through the `m`-variable.
m.forEach((match, groupIndex) => {
console.log(`Found match, group ${groupIndex}: ${match}`);
});
}
答案 1 :(得分:0)
首先,当使用字符串形式的正则表达式时,你必须加倍反斜杠。
其次,你忘记了模式中的空白:
var regex = new RegExp("\\S+\\s+(?="+to_search+")", "g");