AS3 去除空格 正则表达式

前端之家收集整理的这篇文章主要介绍了AS3 去除空格 正则表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

private function Trim(ostr:String):String
{
return ostr.replace(/([ ]{1})/g,"");
}

chat.text = Trim(chat.text) as String;

原文链接:/regex/361829.html

猜你在找的正则表达式相关文章