fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. // your code goes here
  13.  
  14. String json = "{\"eventCategory\":\"digital - deals\",\"ecommerce\":{\"impressions\":{\"products\":[{\"price\":80000,\"name\":\"Voucher Inul Vizta Rp 100.000\",\"position\":0,\"id\":8021,\"list\":\"\\/deals - Liburan\"}]}},\"eventAction\":\"view product - category detail\",\"eventLabel\":\"liburan - inul vizta - voucher inul vizta rp 100.000 - 0\",\"event_ga\":\"productView\",\"iris_session_id\":\"YW5kcm9pZC10b2tvcGVkaWE\u003d:E198C1742DD343C385854EE123CE0E4E:1548236994090\",\"container\":\"gtm\",\"event\":\"default_app\",\"hits_time\":1548237112969}";
  15. System.out.println(json);
  16.  
  17. String msgetEscaped = json.replace("\\", "");
  18. System.out.println(msgetEscaped);
  19. }
  20. }
Success #stdin #stdout 0.05s 2184192KB
stdin
Standard input is empty
stdout
{"eventCategory":"digital - deals","ecommerce":{"impressions":{"products":[{"price":80000,"name":"Voucher Inul Vizta Rp 100.000","position":0,"id":8021,"list":"\/deals - Liburan"}]}},"eventAction":"view product - category detail","eventLabel":"liburan - inul vizta - voucher inul vizta rp 100.000 - 0","event_ga":"productView","iris_session_id":"YW5kcm9pZC10b2tvcGVkaWE=:E198C1742DD343C385854EE123CE0E4E:1548236994090","container":"gtm","event":"default_app","hits_time":1548237112969}
{"eventCategory":"digital - deals","ecommerce":{"impressions":{"products":[{"price":80000,"name":"Voucher Inul Vizta Rp 100.000","position":0,"id":8021,"list":"/deals - Liburan"}]}},"eventAction":"view product - category detail","eventLabel":"liburan - inul vizta - voucher inul vizta rp 100.000 - 0","event_ga":"productView","iris_session_id":"YW5kcm9pZC10b2tvcGVkaWE=:E198C1742DD343C385854EE123CE0E4E:1548236994090","container":"gtm","event":"default_app","hits_time":1548237112969}