How to remove last and first spaces from a string?
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
How do I trim a string in javascript?
号
我只需要从一般字符串中删除最后和第一个空格。
例子:
1 2 3 | var str =" hello world"; // become"hello world" var str ="ehi, do you come from ?"; // become"ehi, do you come from ?" var str ="I am from Cina"; // remain"I am from Cina" |
我该怎么做?
jquery中的trim就是您要查找的内容。
或纯JavaScript:
江户十一〔一〕号