JavaScript RegExp ?! 量词
JavaScript基础 2022-06-08 11:07:55小码哥的IT人生shichen
JavaScript RegExp ?! 量词
定义和用法
?!n 量词匹配其后没有紧接指定字符串 n 的任何字符串。
语法
new RegExp("regexp(?!n)")
直接量语法:
/regexp(?!n)/
浏览器支持
所有主流浏览器都支持 ?! 量词。
实例
对其后没有紧跟 "all" 的 "is" 进行全局搜索:
var str="Is this all there is";
var patt1=/is(?! all)/gi
;
下面被标记的文本显示了表达式获得匹配的位置:
Is this all there is
完整实例【TIY】:
<html>
<body>
<script type="text/javascript">
var str="Is this all there is";
var patt1=/is(?! all)/gi;
document.write(str.match(patt1));
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html