我如何检查字符串是否包含字符和空格,而不仅仅是空白?
检查字符串是否只包含空格的最佳方法是什么?
该字符串允许包含与空白字符相结合的字符,而不仅仅是空白字符。
而不是检查整个字符串以查看是否只有空白,只需检查是否至少有一个非空白字符:
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/4723.html
上一篇: How can I check if string contains characters & whitespace, not just whitespace?
下一篇: Checking for string contents? string Length Vs Empty String