Peter Chen

Peter Chen

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2009年11月27日

摘要: 1. A Beginners Hello World初学者代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--publicclassHelloWorld{publicstaticvoidMain(){System.Console.WriteLine("... 阅读全文
posted @ 2009-11-27 11:32 peter Chen 阅读(2493) 评论(9) 推荐(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-9]*)|([0... 阅读全文
posted @ 2009-11-27 08:53 peter Chen 阅读(437) 评论(3) 推荐(1) 编辑