gpt4 book ai didi

javascript - 在 JavaScript 中 trim 字符串

转载 作者:IT老高 更新时间:2023-10-28 11:10:53 25 4
gpt4 key购买 nike

如何删除字符串开头和结尾的所有空格?

最佳答案

自 IE9+ 以来的所有浏览器都有 trim()字符串方法:

" \n test \n ".trim(); // returns "test" here

对于那些不支持 trim() 的浏览器,你可以使用 MDN 中的这个 polyfill :

if (!String.prototype.trim) {
(function() {
// Make sure we trim BOM and NBSP
var rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
String.prototype.trim = function() {
return this.replace(rtrim, '');
};
})();
}

也就是说,如果使用 jQuery$.trim(str) 也可用并处理 undefined/null。


看这个:

String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g, '');};

String.prototype.ltrim=function(){return this.replace(/^\s+/,'');};

String.prototype.rtrim=function(){return this.replace(/\s+$/,'');};

String.prototype.fulltrim=function(){return this.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g,'').replace(/\s+/g,' ');};

关于javascript - 在 JavaScript 中 trim 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/498970/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com