我正在尝试在JS中创建一个正则表达式,它将匹配box
的出现并返回完整的复合词
使用字符串:
the box which is contained within a box-wrap has a box-button
我想得到:
[box, box-wrap, box-button]
这是否可以仅使用字符串box
来匹配这些单词?
这是我到目前为止所尝试过的,但它没有返回我想要的结果。
var str ='the box which is contained within a box-wrap has a box-button';
var regex = new RegExp('([\w-]*box[\w-]*)', 'g');
document.getElementById('output').innerHTML=str.match(regex);
答案 0 :(得分:4)
尝试这种方式:
([\w-]*box[\w-]*)
请注释,这是javascript中的一个工作示例:
function my_search(word, sentence) {
var pattern = new RegExp("([\\w-]*" + word + "[\\w-]*)", "gi");
sentence.replace(pattern, function(match) {
document.write(match + "<br>"); // here you can do what do you want
return match;
});
};
var phrase = "the box which is contained within a box-wrap " +
"has a box-button. it is inbox...";
my_search("box", phrase);
希望它有所帮助。
答案 1 :(得分:1)
我只是把它扔出去:
0
答案 2 :(得分:0)
答案 3 :(得分:0)
答案 4 :(得分:0)
看起来你想要将match与正则表达式一起使用。 Match是一个字符串方法,它将正则表达式作为参数并返回包含匹配项的数组。
var str = "your string that contains all of the words you're looking for";
var regex = /you(\S)*(?=\s)/g;
var returnedArray = str.match(regex);
//console.log(returnedArray) returns ['you', 'you\'re']