I'm trying to trim white spaces from front and end of a string. Looks like as3 does not have a trim function. Anyone aware of how it can be done?
|
|
You have a method that's called trim in the utility class called StringUtil => http://livedocs.adobe.com/flex/3/langref/mx/utils/StringUtil.html#trim%28%29 |
|||
|
|
|
Did you check Adobe's Documentation ? http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/String.html
} class StringHelper {
} UPDATE : Oh just saw ItzWarty . -.- |
|||
|
|
|
Look at http://jeffchannell.com/ActionScript-3/as3-trim.html
http://www.designscripting.com/2008/11/string-utils-in-as3/ has a ton of string utility functions, including string trim |
|||
|
|
|
You should be able to use regex, something like:
|
|||
|
|
|
ItzWarty's solution does not remove trailing spaces. Amargosh's solution does work perfectly for me, and is also given at http://jeffchannell.com/ActionScript-3/as3-trim.html. Unfortunatly I don't have enough reputation to vote up Amargosh's solution. Additionally I had to remove doublequotes so here's my trim:
|
||||
|
|