I have a url encoded string that is returned from the API that I am using. I want to do something request.getParameter ("paramname") in a string. I am looking for something like str.request.getParameter ("paramname"). Should there be something like this right?
the api explanation returns something like: name1 = value1 & name2 = value2 & name3 = val3
I know that I can split into &, and then go through each element, but that seems silly. Please advise. Thank!
source
share