我有一个正则表达式模式
string _pattern = @"\d{4}-\d{2}\/\d{2}\/\d{4}";
如何检查字符串值是否完全属于此模式或属于此模式。
例如,如果我发送
string someString= "0007-08/02/2012";
Match m = Regex.Match(someString, _pattern);
//i get a full match
但如果我发送
string someString="0007-"
//how do i check if this string value matches that pattern and is a substring.
除了使用正则表达式之外,还有其他方法吗?
谢谢,csk