我需要一些正则表达式的帮助,拜托。我正在尝试使用 Integromat 获取一些数据,然后将其解析为适合 SQL INSERT 命令的格式。Integromat 使用 Javascript 正则表达式。
初始数据如下所示:
Identifier,Handle,Type
CS18511,big-3-jersey,men's jerseys
CS185110231,big-3-jersey,men's jerseys
CS185110232,big-3-jersey,men's jerseys
CS185110233,big-3-jersey,men's jerseys
我想应用正则表达式替换来实现这种格式,理想情况下没有标题行。
('CS18511','big-3-jersey,men''s' jerseys'),
('CS185110231','big-3-jersey,men''s jerseys'),
('CS185110232','big-3-jersey,men''s jerseys'),
('CS185110233','big-3-jersey,men''s jerseys')
我已经尝试了下面的方法,它似乎对我想要的项目进行了分组,但找不到可以创建所需输出的替换。
((?=[^\s,])(?: ?[^[\s,]+|\[[^]]*])*|(?<=,|^)(?=\s*(?:,|$)))
非常感谢任何帮助!
干杯