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.
我想选择除此序列之外的一系列字符“,(双引号和逗号)我如何在 ^ 之后将它们分组为单个字符,使用此 [^”,] 它选择除 " 和 之外的所有字符,而不是顺序 ”,
谢谢
也许是这样的
(?:[^"]+("[^,])?)*