How can I check if string contains characters & whitespace, not just whitespace?

What is the best way to check if a string contains only whitespace?

The string is allowed to contain characters combined with whitespace, but not just whitespace.


而不是检查整个字符串以查看是否只有空白,只需检查是否至少有一个非空白字符:

if (/S/.test(myString)) {
    // string is not empty and not just whitespace
}

if (/^s+$/.test(myString))
{
      //string contains only whitespace
}

这将检查一个或多个空白字符,如果它也匹配空字符串,则用*替换+


那么,如果你使用jQuery,那就更简单了。

if ($.trim(val).length === 0){
   // string is invalid
} 
链接地址: http://www.djcxy.com/p/4724.html

上一篇: 从文本中删除所有空格

下一篇: 我如何检查字符串是否包含字符和空格,而不仅仅是空白?