常用正则

1、只能输入正数,不能低于4位数

/^([1-9]\d{4,})(\.\d+)?$/

2、只能输入正数, 保留一位小数 /^\d+(\.\d{0,1})?$/   3、只能输入0+正整数 /^([1-9]\d*|[0]{1,1})$/   4、合法url /^(https?|ftp):\/\/([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}|([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(:[0-9]+)*(\/($|[a-zA-Z0-9.,?'\\+&%$#=~_-]+))*$/  
上一篇:定义正则,表示电话号码、邮箱、URL、IP


下一篇:常用正则表达式详解