I have a JSON file format as follows:
[{"key/1":"Value1", "key/2":"Value2" },
{"key/1.1":"Value1.1", "key/2.1":"Value2.1" },
{"key/1.2":"Value1.2", "key/2.2":"Value2.2" },
{"key/1.3":"Value1.3", "key/2.3":"Value2.3" }]
My requirement is to search all exixting key names in above JSON format and repalce the slash("/") character to some othere character to have the new JSON file with changed Key names with new replaced character.
Please help
Thanks