jirong
jirong
posts - 34,comments - 19,trackbacks - 1

07 2006 档案
ASP.NET 2.0 Internet安全之参考实现
摘要: http://blog.joycode.com/saucer/archive/2006/07/22/79029.aspxhttp://www.gotdotnet.com/codegallery/codegallery.aspx?id=48f35de8-cd92-4ac6-9144-12d5a13f22ff阅读全文
posted @ 2006-07-22 14:18 jirong 阅读(190) | 评论 (2) 编辑
常用正则表达式
摘要: 常用正则表达式关键词: 正则表达式 "^\d+$"  //非负整数(正整数+0)"^[0-9]*[1-9][0-9]*$"  //正整数"^((-\d+)|(0+))$"  //非正整数(负整数+0)"^-[0-9]*[1-9][0-9]*$"  //负整数"^-?\d+$"    //整数"^\d+(\.\d+)?$"  //非负浮点数(正浮点数+0)"^(([0-9]+\.[0-9]*[1-9...阅读全文
posted @ 2006-07-01 11:38 jirong 阅读(435) | 评论 (2) 编辑