几个C#常用正则表达式的总结

starballl 11 0 PDF 2021-01-04 01:01:43

using System; using System.Text.RegularExpressions; namespace CommonTools { /**//// /// RegexLib 的摘要说明。 /// public class RegexLib { //验证Email地址 public static bool IsValidEmail(string strIn) { // Return true if strIn is in valid e-mail format. return Regex.IsMatch(st

用户评论
请输入评论内容
评分:
暂无评论