Skip to content
Advertisement

remove comma in jsonpath template using bash

I have a JSON path template query.

JavaScript

i’m redirecting it to csv.

JavaScript

getting comma in a message from above output , i want to replace the comma with space for the second column(message) in the bash script.

Anyone has any thoughts on how can achieve this.

Expected result

JavaScript

Advertisement

Answer

Assuming you can change the field delimiter to a character known to not exist in the data (eg, |), you would now be generating:

JavaScript

From here we can use sed to a) remove/replace , with <space> and then b) replace | with ,:

JavaScript

NOTE: the s/[ ]*,[ ]*/g is needed to address the additional requirement of stripping out repeating spaces (as would occur in line #4 if we replace , with <space>)

When applied to the data this generates:

JavaScript

Another option using awk (for OP’s current data using the , as the field delimiter):

JavaScript

When applied to the data this generates:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement