首页 > 其他 > 详细

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

时间:2014-05-17 22:03:30      阅读:405      评论:0      收藏:0      [点我收藏+]

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

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!