码迷,mamicode.com
首页 > Web开发 > 详细

JS判断字符串是否为空或是否全为空格

时间:2018-09-30 18:24:33      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:code   div   span   col   var   console   换行   pre   pac   

 

var test = "      ";
//为空或全部为空格
if (test.match(/^[ ]*$/)) {
        console.log("all space or empty");
}

 

var test = "   \n   ";
//var test = "      ";
if(test.match(/^\s+$/)){
    console.log("all space or \\n")
}
if(test.match(/^[ ]+$/)){
    console.log("all space")
}
if(test.match(/^[ ]*$/)){
    console.log("all space or empty")
}
//空|空格|换行
if(test.match(/^\s*$/)){
    console.log("all space or \\n or empty")
}

 

JS判断字符串是否为空或是否全为空格

标签:code   div   span   col   var   console   换行   pre   pac   

原文地址:https://www.cnblogs.com/lijianda/p/9732498.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!