标签: javascript regex pattern-matching
有人可以告诉我如何找到匹配pastebin中给出的模式的所有字符串的方法吗?
http://pastebin.com/SmWP1usB
提前致谢
答案 0 :(得分:0)
参考 - Regex Global Modifier
例如,
var s = "Is this all there is?"; console.log(s.match(/is/g)); //alert(s.match(/is/g));
将匹配字符串中“is”的所有实例。
无法从此处访问pastebin,希望这会有所帮助。