最新的Web开发教程
 

JavaScript正则表达式\ S元字符

<JavaScript的RegExp对象

做字符串中的非空白字符进行全局搜索:

var str = "Is this all there is?";
var patt1 = /\S/g;

下面给出了标记的文本表达式获得匹配(matches everything except the whitespaces)

Is this all there is?
试一试»

定义和用法

该\ S元字符用于查找非空白字符。

空白字符可以是:

  • 空格字符
  • 制表符
  • 回车符
  • 换行符
  • 垂直制表符
  • 换页符

浏览器支持

表达
\S

句法

new RegExp("\\S")

or simply:

/\S/

语法与修饰语

new RegExp("\\S","g")

or simply:

/\S/g

<JavaScript的RegExp对象