Remove space in the middle of a string with $.trim?
本问题已经有最佳答案,请猛点这里访问。
我想用
1 | console.log($.trim("hello, how are you? ")); |
我得到:
1 | hello, how are you? |
我怎样才能得到
1 | hello, how are you? |
谢谢。
可以使用正则表达式将所有连续空格
1 2 | var string ="hello, how are you? "; console.log($.trim(string.replace(/\s\s+/g, ' '))); |
一种解决方案是使用javascript
我建议你使用
1 2 3 | var str="hello, how are you? "; str=str.replace( /\s\s+/g, ' ' ); console.log(str); |
另一个简单的方法是使用
1 2 3 | var str="hello, how are you? "; str=str.split(/\s+/).join(' '); console.log(str); |