JavaScript RegExp [abc] 表达式
JavaScript RegExp 对象的 [abc]
表达式用于查找方括号之间的任何字符
方括号内的字符可以是任何字符或字符范围
浏览器支持
支持 | 支持 | 支持 | 支持 | 支持 |
语法
new RegExp("[abc]")
简写
/[abc]/
范例
在字符串中对字符范围 [a-h] 进行全局搜索
var str="Is this all there is?"; var patt1=/[a-h]/g;
JavaScript RegExp 对象的 [abc]
表达式用于查找方括号之间的任何字符
方括号内的字符可以是任何字符或字符范围
支持 | 支持 | 支持 | 支持 | 支持 |
new RegExp("[abc]")
简写
/[abc]/
在字符串中对字符范围 [a-h] 进行全局搜索
var str="Is this all there is?"; var patt1=/[a-h]/g;
♥ 简单教程,简单编程 - IT 入门首选站
Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.