function trim(str) {
if (str & (typeof str === "string")) {
return str.replace(/(^s*)|(s*)$/g, ""); //去除前后空白符
}
}
实现一个方法,清除字符串前后的空格。
Posted on:2021年7月7日 at 00:14
function trim(str) {
if (str & (typeof str === "string")) {
return str.replace(/(^s*)|(s*)$/g, ""); //去除前后空白符
}
}