欢迎访问服务器技术网-www.fuwuqijishu.com

JavaScript RegExp [^abc] 表达式

JavaScript fuwuqijishu 2年前 (2022-09-04) 16次浏览 0个评论 扫描二维码
文章目录[隐藏]

JavaScript RegExp [^abc] 表达式

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?


JavaScript RegExp 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2223.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900