js去除字符串的前后空格

2021-03-31 04:28

阅读:696

标签:string   UNC   fun   log   console   空白   去除   turn   amp   

function trim(str) {
  if (str && typeof str === "string") {
  return str.replace(/^\s+/,"").replace(/\s+$/,""); //去除前后空白符
}
}
console.log(‘---‘+trim(‘ jjj jjj ‘)+‘----‘); // console.log(‘---‘+trim(‘ jjj jjj ‘)+‘----‘);

js去除字符串的前后空格

标签:string   UNC   fun   log   console   空白   去除   turn   amp   

原文地址:https://www.cnblogs.com/itsmart/p/12589375.html


评论


亲,登录后才可以留言!