正则表达式模式[#[#hello]#]在javascript中匹配
var str1 = "hello <span contenteditable="false" class="underlineText hashtags hello">hello<span style="display:none;"> [#[#hello]#] [#[#hi]#] [#[#welcome]#]</span></span>" var arr = textToPost.match(/#^[a-zA-Z0-9]/g)
我想提取与此模式[#[#*]#]匹配的字符串。正则表达式模式[#[#hello]#]在javascript中匹配
回答:
试试这个正则表达式,它与我的作品
var reg = /\[[#[a-zA-Z0-9]+]#]/ig;
var str1 = "hello hello [#[#hello]#] [#[#hi]#] [#[#welcome]#]"; var reg = /\[[#[a-zA-Z0-9]+]#]/ig;
var arr = str1.match(reg);
console.log(arr)
以上是 正则表达式模式[#[#hello]#]在javascript中匹配 的全部内容, 来源链接: utcz.com/qa/264370.html