Hi,
Given the following string:
(remember, this is just a string)
I want to parse out the bidamt srID, etc.
I was thinking of doing something like this:
... and then doing a querystring parse on it... but that's the wrong tree.
I can't exactly remember how to parse this out by "&" so I've got a key/value pair.
Can someone please give me a hand with this?
Thanks.
Given the following string:
Code:
redirString = "[URL unfurl="true"]http://cgi.myserver.com/cgi-bin/clickthru.cgi?EI=58633&Q=airline&NGT=pexIB/98IeCdU9I6rcaAtz[/URL] qkeRj7ot/tlx0IWUSxx8yNmKBd7o7FmLRlNVq7K3QLe1TBC/6cN55cOCgwRpO nJ4mhED7d3Li0amkjBNhl1702 7AdO683YmGWHSdsiucv9tjZ5URI44zZVptIsIl4DWG63cM/21vxrDYkmmSd2Ldpnrap7SXcPufQuzOHFvO03MWJ 1GSjUqInpuNULwa Bu0bMVARjqZ6HRlKCz4Zwm/6VgKQh7wH5LGETIDKBja1iYEh/ODgww6L7r1s/8w==&x=1&strThisSearch=airline&bidamt=0.14&srID=211";
(remember, this is just a string)
I want to parse out the bidamt srID, etc.
I was thinking of doing something like this:
Code:
Uri uriRedir = new Uri(redirString);
I can't exactly remember how to parse this out by "&" so I've got a key/value pair.
Can someone please give me a hand with this?
Thanks.