如何使用javascript确定输入字符串是否只包含空格?
答案 0 :(得分:24)
另一个好帖子:Faster JavaScript Trim
您只需要应用trim
函数并检查字符串的长度。如果修剪后的长度为0 - 那么该字符串仅包含空格。
var str = "data abc";
if((jQuery.trim( str )).length==0)
alert("only spaces");
else
alert("contains other characters");
答案 1 :(得分:9)
if (!input.match(/^\s*$/)) {
//your turn...
}
答案 2 :(得分:2)
或者,您可以执行test()
返回布尔值而不是数组
//assuming input is the string to test
if(/^\s*$/.test(input)){
//has spaces
}
答案 3 :(得分:0)
if(!input.match(/^([\s\t\r\n]*)$/)) {
blah.blah();
}
答案 4 :(得分:0)
最快的解决方案是使用正则表达式原型函数test()并查找不是空格或换行符的任何字符\S
:
if (/\S/.test(str))
{
// found something other than a space or a line break
}
如果你有一个超长字符串,它可以产生显着的差异。