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# 中,我有这个正则表达式模式:
r = New Regex("^(("(?:[^"]|"")*"|[^,]*)(,("(?:[^"]|"")*"|[^,]*))*)$");
目前这给了我这个错误:“CS1002:;预期”
我知道这很可能是转义字符串问题,但我看不到它在哪里。
为你的帮助干杯!
Ahmed KRAIEM 是如何告诉你的,你需要"用\
"
\
你的版本:
我的版本
r = New Regex("^((\"(?:[^\"]|\"\")*\"|[^,]*)(,(\"(?:[^\"]|\"\")*\"|[^,]*))*)$");