关于Regex全字符匹配

By | February 5, 2007

前加^后加$

比如^[\d]+$

abc123这个就不match了,IsMatch返回false

如果[\d]+

abc123 IsMatch的话就会返回true