I'm new to Scala. I have a string as below
2017-07-07|{"success":true,"data":{"status":"200","message":"Operation completed."}}
I only need the second part of the string. I'm able to using map and split it into string as below
{"success":true,"data":{"status":"200","message":"Operation completed."}}
but it's suppose to be JSON, and I'm not able to parse it. Hope someone can give me some guide.