去掉字符串开头和结尾的空白
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了去掉字符串开头和结尾的空白相关的知识,希望对你有一定的参考价值。
This can be useful when you retrieve strings from an XML or script that have whitespaces at the beginning or the end.
function stripBeginEndWhithespace(p_string:String):String { var pattern:RegExp = new RegExp("^[ ]+|[ ]+$","g"); p_string = p_string.replace(pattern, ""); return p_string; }
以上是关于去掉字符串开头和结尾的空白的主要内容,如果未能解决你的问题,请参考以下文章