搜索

最新评论

友情博客

RSS

我的 Blog:
allinhands 最新的 20 条日志
[.Net]
[VBScript]
[JScript]
[XML]
[HTML&CSS]
[ASP]
[ActiveX]
[Software]
[Other]
全站 Blog:
全站最新的 20 条日志
 
17种正则表达式

"^\d+{LogContent}quot;  //非负整数(正整数 + 0)
"^[0-9]*[1-9][0-9]*{LogContent}quot;  //正整数
"^((-\d+)|(0+)){LogContent}quot;  //非正整数(负整数 + 0)
"^-[0-9]*[1-9][0-9]*{LogContent}quot;  //负整数
"^-?\d+{LogContent}quot;    //整数
"^\d+(\.\d+)?{LogContent}quot;  //非负浮点数(正浮点数 + 0)
"^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)){LogContent}quot;  //正浮点数
"^((-\d+(\.\d+)?)|(0+(\.0+)?)){LogContent}quot;  //非正浮点数(负浮点数 + 0)
"^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))){LogContent}quot;  //负浮点数
"^(-?\d+)(\.\d+)?{LogContent}quot;  //浮点数
"^[A-Za-z]+{LogContent}quot;  //由26个英文字母组成的字符串
"^[A-Z]+{LogContent}quot;  //由26个英文字母的大写组成的字符串
"^[a-z]+{LogContent}quot;  //由26个英文字母的小写组成的字符串
"^[A-Za-z0-9]+{LogContent}quot;  //由数字和26个英文字母组成的字符串
"^\w+{LogContent}quot;  //由数字、26个英文字母或者下划线组成的字符串
"^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+{LogContent}quot;    //email地址
"^[a-zA-z]+://(\w+(-\w+)*)(\.(\w+(-\w+)*))*(\?\S*)?{LogContent}quot;  //url

缺缺 发表于 2004-7-28  [所属栏目:JScript | 返回首页]
小字体中字体大字体
评论(共 {Count} 条)
{CommentAuthor}:
{CommentTime}
{CommentUrl}
{CommentEmail}
{CommentIp}
{CommentContent}