我觉得我疯了。为什么模式\s
不匹配单个空格字符?见下文或this pad。
Console.WriteLine(Regex.IsMatch(@" ", " "));
// True
Console.WriteLine(Regex.IsMatch(@"\s", " "));
// False!?
答案 0 :(得分:7)
参数的顺序不正确。 Regex.IsMatch
的签名是:
public static bool IsMatch(
string input,
string pattern
)