The function for trim in ActionScript is defined inside StringUtil Class.
Checkout the following function.
public function stringTrim(result:String):String{ result = StringUtil.trim(result); trace(result); return result; }
Please post your valuable comments if the post was useful.
The function for trim in ActionScript is defined inside StringUtil Class.
Checkout the following function.
public function stringTrim(result:String):String{ result = StringUtil.trim(result); trace(result); return result; }