Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.8k views
in Technique[技术] by (71.8m points)

python 3.x - Find and replace commas between quotation marks

I have a string

line='Aaron JamesNorman662018,1956,Aaron James,Norman,Aaron,Aaron James,Pangea Ventures,Zone 20,Field,Parkwest,"Director,Human Resourse",Leasing Agent 2 (L2),DeLana Watson,2018-06-06,2019-09-27 00:00:00,Terminated'

I need to remove the comma between the double quote, in this case is the comma between 'Director' and 'Human Resource'.

Thanks


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I think this re works for my case

line=re.sub(r'(?!(([^"]"){2})[^"]*$),', '', line)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...