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

正则表达式集锦

时间:2015-01-28 19:25:14      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

var regIP = /^((2[0-4][0-9]|25[0-5]|[01]?[0-9][0-9]?)\.){3}(2[0-4][0-9]|25[0-5]|[01]?[0-9][0-9]?)$/;   //ip正则表达式
var regPath = /^[a-zA-Z]:\\([^\\\?\/\*\|<>:\"]+\\)*$/;   //文件夹路径正则表达式
var ipStr="123.12.1.1";
var pathStr="C:\abc\";
if(!regIP.exec(ipStr)){		
  alert("IP不合法");
}
	 
if(!regPath.exec(pathStr)){
  alert("路径不合法");
}

  

正则表达式集锦

标签:

原文地址:http://www.cnblogs.com/bright-lin/p/4256466.html

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