Category Archives: regex

关于Regex全字符匹配

前加^后加$ 比如^[\d]+$ abc123这个就不match了,IsMatch返回false 如果[\d]+ abc123 IsMatch的话就会返回true