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.
我正在尝试在 c# 中使用以下正则表达式
<asp:(\w+)\s+.*?id="(\w+)"
我似乎无法将其存储为字符串而不破坏它。
我怎样才能摆脱表达式并保持其完整性?
谢谢
string pattern = @"<asp:(\w+)\s+.*?id=""(\w+)""";
使用这个 Regex.Escape() 方法。
Regex.Escape("<asp:(\w+)\s+.*?id=""(\w+)""");