/ Published in: ActionScript 3
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// strip spaces from oldString var newString:String = String(oldString.replace( /\s/g, "" ));