导航

2005年3月24日

摘要: http://forums.aspfree.com/archive/t-17107http://forums.aspfree.com/t17107/s.htmlusing System;using System.Collections;using System.ComponentModel;using System.Drawing;using System.Drawing.Printing;usi... 阅读全文

posted @ 2005-03-24 11:53 兰宝石.NET 阅读(238) 评论(0) 推荐(0)

摘要: "^\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][0... 阅读全文

posted @ 2005-03-24 11:41 兰宝石.NET 阅读(248) 评论(0) 推荐(0)