JavaScript RegExp – \W
描述
\w
匹配非单词字符。
例子
以下示例演示了 RegExp 表达式的用法。
<html>
<head>
<title>JavaScript RegExp</title>
</head>
<body>
<script type = "text/javascript">
var str = "ab123c_#@";
var pattern = /\W/g;
var result = str.match(pattern);
document.write("Test 1 - 返回值 : " + result);
str = "abc bcd";
result = str.match(pattern);
document.write("<br/>Test 2 - 返回值 : " + result);
</script>
</body>
</html>
输出
Test 1 - 返回值 : #,@
Test 2 - 返回值 :