If I have the string
PercentageValue = 99.9,\r\nCaseID = 9745683 PercentageValue = 90.3,\r\nCaseID = 9387593 PercentageValue = 88.6,\r\nCaseID = 4893448
How can I parse it into:
[
{PercentageValue : '99.9', CaseID : '9745683'},
{PercentageValue : '90.3', CaseID : '9387593'},
{PercentageValue : '88.6', CaseID : '4893448'}
]
There seems to be a space delimiter, but the issue is there are other spaces too.
Thanks
:instead of=?