Friends good day. today I come with another question, I have a string of the following form.
{"idc100":"1",
"creado_por":"superadmin",
"asignado":"Yhowan Ramirez",
"ips":"["melgar","corondo"]",
"numero":"200116001232201602345",
"devolucion":"["porque si","porque no"]"}
and I need to find these values that are within []
example ["melgar","corondo"]
and format it so that it is simply like this: melgar - corondo
, in order that the string
is like this:
{"idc100":"1",
"creado_por":"superadmin",
"asignado":"Yhowan Ramirez",
"ips":" melgar - corondo",
"numero":"200116001232201602345",
"devolucion":"porque si - porque no"}
Some little hands thank you, thank you!