使用JavaScript正则表达式查找非空格字符

WBOY
WBOY 转载
2023-08-20 08:34:05 413浏览

使用JavaScript正则表达式查找非空格字符

\S

Example

You can try to run the following code to find non-whitespace character −

<html>
   <head>
   <title>JavaScript Regular Expression</title>
   </head>
   <body>
      <script>
         var myStr = "100% Responsive!";
         var reg = /\S/g;
         var match = myStr.match(reg);
         
         document.write(match);
      </script>
   </body>
</html>

以上就是使用JavaScript正则表达式查找非空格字符的详细内容,更多请关注php中文网其它相关文章!

声明:本文转载于:tutorialspoint,如有侵犯,请联系admin@php.cn删除