去掉字符串开头和结尾的空白

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.
  1. function stripBeginEndWhithespace(p_string:String):String
  2. {
  3. var pattern:RegExp = new RegExp("^[
  4. ]+|[
  5. ]+$","g");
  6. p_string = p_string.replace(pattern, "");
  7. return p_string;
  8. }

以上是关于去掉字符串开头和结尾的空白的主要内容,如果未能解决你的问题,请参考以下文章

swift 从表示字符串的开头和结尾剥去空白字符。

AS3从字符串的开头和结尾修剪空白

matlab 去掉字符串前后的空格

如何从字符串的开头和结尾删除换行符?

JS问题,去掉字符串的前后空格

JavaScript 正则表达式 - 从开头和结尾删除空格