本文介绍了正则表达式在JavaScript中意味着什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
正则表达式中的/ \S /表示什么?
What does /\S/ mean in a regex?
while (cur ! = null) {
if (cur.nodeType == 3 && ! /\S/. test(cur.nodeValue)) {
element. removeChild(cur);
} else if (cur. nodeType == 1) {
cleanWhitespace(cur);
}
}
推荐答案
\s
匹配空格(空格,制表符和换行符)。 \S
被否定 \s
。
\s
matches whitespace (spaces, tabs and new lines). \S
is negated \s
.
这篇关于正则表达式在JavaScript中意味着什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!