欢迎访问服务器技术网-www.fuwuqijishu.com

JavaScript RegExp \S 元字符

JavaScript fuwuqijishu 2年前 (2022-09-04) 21次浏览 0个评论 扫描二维码
文章目录[隐藏]

JavaScript RegExp \S 元字符

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?


JavaScript RegExp 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2300.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900