js 正则
Posted 小小小尘埃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 正则相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>
<script>
var str = ‘runoob‘;
var patt1 = new RegExp(‘\\w‘, ‘g‘); // 有转义作为正则表达式处理
var patt2 = new RegExp(‘\w‘, ‘g‘); // 无转义作为字符串处理
var patt3 =/\w+/g; // 与 patt1 效果相同
document.write(patt1.test(str)) //输出 true
document.write("<br>")
document.write(patt2.test(str)) //输出 false
document.write("<br>")
document.write(patt3.test(str)) //输出 true
</script>
</body>
</html>
结果:
true
false
true
以上是关于js 正则的主要内容,如果未能解决你的问题,请参考以下文章