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.
我有遵循以下示例的 .CSV 文件
22645.30003,2013 Mar 31,4:00:00,5:59:59,"Twilight Saga, The: Breaking Dawn - Part 2","Condon, Bill",,,4
我需要用符号 \ 替换逗号作为列分隔符,保留引号中包含的字符串内的所有逗号,并打算在 Notepad++ 中的简单 FIND 和 REPLACE 中使用它。
你可以试试这个
search : ,("[^"]*")? replace : \\\1
(在 6.3.2 版本上测试并工作)
遵循正则表达式
(,)(?=(?:[^"]|"[^"]*")*$)
匹配引号外的所有逗号。
提琴手