返回到:JavaScript对象:JavaScript RegExp 对象
定义和用法
\S 元字符用于查找非空白字符。
空白字符可以是:
- 空格符 (space character)
- 制表符 (tab character)
- 回车符 (carriage return character)
- 换行符 (new line character)
- 垂直换行符 (vertical tab character)
- 换页符 (form feed character)
语法
new RegExp("\S")
或者更简单方式:
/\S/
所有主要浏览器都支持 \S 元字符
实例
对字符串中的非空白字符进行全局搜索:
var str="Is this all there is?";
var patt1=/S/g;
下面被标记的文本显示了表达式获得匹配的位置:
Is this all there is?
DEMO
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>web176教程(web176.com)</title> </head> <body> <script> var str="Is this all there is?"; var patt1=/\S/g; document.write(str.match(patt1)); </script> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/jsarrtips/2842.html