这个问题已经在这里有了答案:




已关闭8年。






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

例:

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"

我怎样才能做到这一点 ?

最佳答案

trim from jQuery是您的所需。
$.trim(' string with spaces at the ends ');
还是普通的javascript:
' string with spaces at the ends '.trim()

关于javascript - 如何从字符串中删除最后一个空格和第一个空格? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10811896/

10-17 02:57