随笔分类 - 35RegularExp
摘要:Advanced Syntax Reference正则高级语法参考Grouping and Backreferences分组查找与后向引用Syntax语法Description描述Example示例(regex)Round brackets group the regex between them. They capture the text matched by the regex inside them that can be reused in a backreference, and they allow you to apply regex operators to the enti
阅读全文
摘要:以下是代码经常用到的一些字符串校验的函数usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Text.RegularExpressions;namespaceLinus.Fin.Public.StringLib{publicclassRegularExp{ #region常用正则表达式枚举类 publicclassRegExpPattern{///summary ///非负整数(正整数+0) ////summary publicconststringNonNe
阅读全文