JavaScript对象:JavaScript RegExp [^abc] 表达式

返回到:JavaScript对象:JavaScript RegExp 对象

定义和用法

[^abc] 表达式用于查找任何不在方括号之间的字符。

方括号内的字符可以是任何字符或字符范围。

语法

new RegExp("[^xyz]")

或者更简单方式:

/[^xyz]/

所有主要浏览器都支持 [^abc] 表达式

实例

对不在字符范围 [a-h] 内的字符进行全局搜索:

var str="Is this all there is?";
var patt1=/[^a-h]/g;

被标记的文本显示了表达式获得匹配的位置:

Is this all there is?

DEMO

<script>
var str="Is this all there is?";
var patt1=/[^a-h]/g;
document.write(str.match(patt1));
</script>

//result
I,s, ,t,i,s, ,l,l, ,t,r, ,i,s,?

作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/jsarrtips/2805.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2021年7月29日 下午2:36
下一篇 2021年7月29日 下午2:51

相关推荐

发表回复

登录后才能评论