gpt4 book ai didi

java - 删除 csv 中字符串内的逗号

转载 作者:行者123 更新时间:2023-12-02 05:21:23 25 4
gpt4 key购买 nike

一个 csv 文件,其格式为

name age comments

John 12 Hello World,Example

Jack 14 Hello,World

如何用 |(管道)符号替换注释部分中的逗号。

逗号也可以出现在姓名、年龄和评论中。如何在文本中动态处理它?<​​/p>

最佳答案

由于您似乎没有使用逗号作为字段分隔符,因此它很简单

sed 's/,/|/g' file

仅在评论字段中替换:

while read name age comments; do echo "$name $age ${comments//,/|}"; done < file

关于java - 删除 csv 中字符串内的逗号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26488681/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com