I got json response as below where i need to extract the description value for my next POST method :
{
"description": "thisisjson"
}
I've tried using "description":"(.+?)" to extract but it is not working and returning me default value of error. Any idea on what i missing ? Thanks mySetting



