16

可能重复:
如何在 javascript 中修剪字符串?

我只需要从通用字符串中删除最后一个和第一个空格。

例子:

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"

我怎样才能做到这一点 ?

4

1 回答 1

28

来自 jQuery的修剪是您正在寻找的。

$.trim(' string with spaces at the ends ');

或普通的javascript:

' string with spaces at the ends '.trim()

于 2012-05-30T07:39:36.017 回答