码迷,mamicode.com
首页 > Web开发 > 详细

js去除字符串的前后空格

时间:2020-03-28 21:56:32      阅读:100      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!