本文介绍了我有RTRIM;如何让LTRIM用正则表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有RTRIM;如何使LTRIM一个?

I have RTRIM; how to make LTRIM one?

公共静态函数RTRIM(字符串:字符串):字符串
           {
           返回与string.replace(/ \ s + $ /,);
           }

public static function rtrim(string:String):String
{
return string.replace(/\s+$/,"");
}

推荐答案

哇,严​​重?您使用的是常规的EX pressions从字符串的两端删除字符的顺序不变?真?我不知道的ActionScript / Flex中,但这不是要走的路。经过一个快速谷歌,我发现一个解决方案可能会或可能不会更有效。

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.

这篇关于我有RTRIM;如何让LTRIM用正则表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 09:51