小码哥的IT人生

JavaScript RegExp [abc] 表达式

JavaScript基础 2022-06-08 11:06:27小码哥的IT人生shichen

JavaScript RegExp [abc] 表达式

定义和用法

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

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

语法

new RegExp("[abc]")

直接量语法:

/[abc]/

浏览器支持

所有主流浏览器都支持 [abc] 表达式。

实例

在字符串中对字符范围 [a-h] 进行全局搜索:

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

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

Is this all there is?

完整实例【TIY】:

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

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024