I have the following string:
FirstName=John&LastName=Doe&City=London&ConfirmationId=WXASL320330
I want to extract the confirmationId from it. I have done a split on it and passed in the & character, but this returns ConfirmationId=WXASL320330 and I just WXASL320330. What is the best way of doing this?
The string is actually part of a property called RawProcessorResult that PayPal returns.