Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用以下方法测试了一个正则表达式:
Match match = Regex.Match(txtToMatch.Text,txtRegex.Text,RegexOptions.IgnoreCase); if (match.Success) { MessageBox.Show("success"); }
使用的正则表达式是/d. 但是,当我对其进行测试时,9它返回错误。为什么会这样?
/d
9
我认为你需要的是\d,而不是/d
\d
你需要使用\d,而不是/d。为避免 C# 将您的字符串视为转义序列,您可以使用逐字字符串:@"\d".
@"\d"