代码:
function trim(str) { if (str && typeof str === "string") { return str.replace(/(^\s*)|(\s*)$/g,""); //去除前后空白符 } }
.
原文地址:https://www.cnblogs.com/crazycode2/p/10661420.html
时间: 2024-11-02 15:08:10
代码:
function trim(str) { if (str && typeof str === "string") { return str.replace(/(^\s*)|(\s*)$/g,""); //去除前后空白符 } }
.
原文地址:https://www.cnblogs.com/crazycode2/p/10661420.html