awk 删除所有列中的符号“,”如果存在于

awk 删除所有列中的符号“,”如果存在于

我的数据输入文件:

508,186,,Name,"VIA PAS, 4",[email protected],
291,345,,Name2,Votros 73,[email protected],
911,733,,Name3,zap 101,[email protected],
9000,32,,Michel,hops 12,"[email protected], [email protected], [email protected]",

我的数据输出文件:

508,186,,Name,**VIA PAS 4**,[email protected],
291,345,,Name2,Votros 73,[email protected],
911,733,,Name3,zap 101,[email protected],
9000,32,,Michel,hops 12, **[email protected] [email protected] [email protected]**,

因此 awk 应该找到所有 的位置""并从 中删除逗号""。然后删除"符号。如果需要,只需删除“”,这很容易,但我需要先删除逗号。请注意,逗号也用作分隔符。

相关内容