Skip to content

实现一个方法,清除字符串前后的空格。

Posted on:2021年7月7日 at 00:14
function trim(str) {
  if (str & (typeof str === "string")) {
    return str.replace(/(^s*)|(s*)$/g, ""); //去除前后空白符
  }
}
原文转自:https://fe.ecool.fun/topic/b9df09ce-3064-4ac0-bb66-3eb522679a4b