首页 > 代码库 > javascript 正则匹配 提取全部 preg_match_all matchAll方法
javascript 正则匹配 提取全部 preg_match_all matchAll方法
javascript 提取所有的的方法,javascript中没有matchAll这个方法。
用while来实现类似 PHP 中的preg_match_all() :(by default7#zbphp.com)
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <select name="AgentIdP" id="AgentIdP" onchange="selectNull('AgentIdI333');selectNull('GameId333');"></select> <script type="text/javascript"> var html = document.getElementById('AgentIdP').getAttribute('onchange'); var exp = /selectNull\([\'"]{1}([\w-]+)[\'"]{1}\)/ig; var result ; while( (result = exp.exec(html))!= null){ console.log(result); } console.log(html); </script> </body> </html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。