11

如何使用 javascript 确定输入字符串是否仅包含空格?

4

5 回答 5

22

另一个好帖子:更快的 JavaScript 修剪

您只需要应用trim函数并检查字符串的长度。如果修剪后的长度为 0 - 则字符串仅包含空格。

var str = "data abc";
if((jQuery.trim( str )).length==0)
  alert("only spaces");
else 
  alert("contains other characters");
于 2012-05-10T05:52:09.397 回答
9
if (!input.match(/^\s*$/)) {
    //your turn...
} 
于 2012-05-10T05:52:30.410 回答
2

或者,您可以执行 atest()返回布尔值而不是数组

//assuming input is the string to test
if(/^\s*$/.test(input)){
    //has spaces
}
于 2012-05-10T05:59:40.813 回答
0
if(!input.match(/^([\s\t\r\n]*)$/)) {
    blah.blah();
} 
于 2012-05-10T05:54:36.500 回答
0

最快的解决方案是使用正则表达式原型函数test()并查找任何不是空格或换行符的字符\S

if (/\S/.test(str))
{
    // found something other than a space or a line break
}

如果你有一个超长的字符串,它会产生很大的不同。

于 2016-03-04T18:48:21.703 回答