1

for instance if a string is

data = "success=0"

or

data = "success=1&registration=20";

how to parse all variables into URLVariables class object.

2 Answers 2

2
var urlVars:URLVariables = new URLVariables(data);

or

urlVars.decode(data);
Sign up to request clarification or add additional context in comments.

Comments

1

If i remember right this will solve your problem.

var urlvar:URLVariables = new URLVariables(data);

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.