/ Published in: ActionScript 3
Expand |
Embed | Plain Text
// strip spaces from oldString var newString:String = String(oldString.replace( /\s/g, "" ));
Comments
Subscribe to comments
You need to login to post a comment.

This apparently only strips a single space out?
Well spotted richarddas - this is now fixed.