使用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正则表达式查找非空格字符的详细内容,更多请关注双恒网络其它相关文章!