码迷,mamicode.com
首页 > 其他好文 > 详细

验证字符串空“” 的表达式

时间:2014-05-17 22:02:57      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:c   a   string   for      字符串   

if ($(this).val() == "" || $(this).val() == null) {
              filterString = "";
} else {
              filterString = "^" + replaceRegexStr(filterList[0]) + "$";
              for (var j = 1; j < filterList.length; j++) {
                     filterString = filterString + "|" + "^" + replaceRegexStr(filterList[j]) + "$";
              }
   }

 

  ^$    这个即是“”的正则

 

 

验证字符串空“” 的表达式,布布扣,bubuko.com

验证字符串空“” 的表达式

标签:c   a   string   for      字符串   

原文地址:http://www.cnblogs.com/specification/p/3732768.html

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