Browsing the archives for the 正则表达式 tag

一些常用的正则表达式

in PHP与其它Web技术

一些常用的正则表达式
“^\d+$”  //非负整数(正整数 + 0)
“^[0-9]*[1-9][0-9]*$”  //正整数
“^((-\d+)|(0+))$”  //非正整数(负整数 + 0)
“^-[0-9]*[1-9][0-9]*$”  //负整数
“^-?\d+$”    //整数
“^\d+([......]

继续阅读

0 Comments