'Sup guys.
I came across a rather sleek .NET example of using a regular expression to strip a string of non-alphanumeric characters:
Regex.Replace(stringToCleanUp, "[\W]", "");
- and I was wondering if it’d be possible to achieve that is AS3 with similar elegance.
Thanks.
[COLOR=Red]UPDATE:[/COLOR] http://www.kirupa.com/forum/showthread.php?t=333584