I need to remove "\" character from json string after executing GET command in java
I tried to remove by replace method but unable to remove
response = ["{ \"isEnriched\":\"true\",\"event\":{\"commonEventHeader\":{\"startEpochMicrosec\":\"1555099630557000\"}}}"] responseBody = response.replaceAll("\", " ");
Unable to replace "\" with blank space