Hello,
I need to extract in actionscript the variables from a string like /var1/var2/var3/...
Each variables can be characters or/and number and variable size.
My current regex /(\w+)/g
work for the first variable but not for the others.
var matchExpression:RegExp = /(\w+)/g;
var match:Array = matchExpression.exec(browserManager.fragment);
Thank you!