Thanks for your time!
I get a string, looks like this :
web_custom_request("pricing_approval",
"URL=http://loanoriginationci:8080/ro-web/service/pricing/task/list/pricing_approval?uniqueId=1362015883531",
"Method=GET",
"Resource=0",
"RecContentType=text/xml",
"Referer=http://loanoriginationci:8080/MAUIWeb/MAUIShell.swf/[[DYNAMIC]]/6",
"Snapshot=t76.inf",
"Mode=HTTP",
LAST);
I want to get the parameters of this function string, and store them in different variables. Then what comes to my mind is splitting this string by string.split(","), then get each part of it.
But if there's a comma within the parameters, say this one "Body=xxxx,xxxx", the method above will be wrong.
So is there some elegant and neat way to deal with it? Thanks again!