I have RTRIM; how to make LTRIM one?
public static function rtrim(string:String):String
{
return string.replace(/\s+$/,"");
}
|
|
I have RTRIM; how to make LTRIM one? public static function rtrim(string:String):String
|
||
|
|
|
|
Wow, seriously? You're using regular expressions to remove a constant sequence of characters from the ends of a string? Really? I don't know Actionscript/Flex, but this isn't the way to go. After a quick google I found a solution which may or may not be more efficient. |
||||||||
|
|
|
Caveat: Untested! Look up the flex 3.0 documentation here. This is exactly similar to what you have, except that we use a different metacharacter to specify that we want to start searching for whitespaces ( |
|||
|
|
|
|
Instead of re-inventing the wheel, why not just use the StringUtil class from Adobe's as3corelib library? Out of interest, as3corelib defines it's trim functions as follows:
|
||||
|