本文介绍了如何修剪弦线的边?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



伙计,


在PHP和其他一些脚本语言中,一个有trim() - 它删除了

换行符,标签和空格可能是前缀或后缀字符串。


有人能告诉我如何在javascript中执行此操作吗?


非常感谢,

randell d。


Folks,

In PHP and some other scripting languages, one has trim() - It removes
newline, tabs and blank spaces that might prefix, or suffix a string.

Can someone tell me how I can do this in javascript?

Much appreciated,
randell d.

推荐答案





JW



http://jibbering.com/faq/#FAQ4_16
JW







http://www.vermontsoftware.com/Javascript/trim.html



String.prototype.trim = function()

{

返回this.match(/(\\\\ + + + \ S +)/ g).join( " );

}


String.prototype.trim = function()
{
return this.match(/(\b\S+|\S+)/g).join(" ");
}


这篇关于如何修剪弦线的边?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 15:01