All the latest and ... well, the latest anyway.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3950 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -12,19 +12,7 @@ public class StringUtil
|
||||
*/
|
||||
public static function trim (str :String) :String
|
||||
{
|
||||
while (str.search(/\s/) == 0) {
|
||||
str = str.substring(1);
|
||||
}
|
||||
do {
|
||||
var endstr :String = str.substring(str.length - 1);
|
||||
if (endstr.search(/\s/) != -1) {
|
||||
str = str.substring(0, str.length - 1);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
} while (true);
|
||||
|
||||
return str;
|
||||
return mx.utils.StringUtil.trim(str);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user