我有一个正则表达式,我需要从document.body.outerHTML
中提取数据我尝试了各种方法,例如.search()
,.match()
& .exec()
但它不起作用我需要从整个document.body.outerHTML
中提取数据。我的课程如下。
class executionPrompt {
constructor(){
this.regex = /(B[0-9]{2})/
this.data = [];
}
start(){
var html = jQuery(document.body.outerHTML);
var matches = jQuery(html).html();
console.log(matches.match(this.regex));
}
}
我有整个文档和正则表达式,但我无法获取匹配字符串的数组。请帮帮我。