我有一个字符串,其中包含逗号分隔的数据:
1, What is your name ?, Male, Cell no
2, From which country you belong, USA, Greetings
我正在使用这个正则表达式,但它不起作用:
str.replace(/\s/g, "")
我可以将字符串转换为:
1,What is your name ?,Male,Cell no
2,From which country you belong,USA,Greetings
1条答案
按热度按时间5fjcxozz1#
正如您在评论中提到的,您希望在将值写入csv之前修剪这些值。这可以通过设置
withTrim
-选择权CSVFormat
:内容
file.txt
执行后: