实现 trim
MengZhaoFly opened this issue · 0 comments
MengZhaoFly commented
题目
实现 trim
题解
找到开始的空格 和 结尾的空格
function trim(str) {
return str.replace(/(^\s*)|(\s*$)/g, '')
}
MengZhaoFly opened this issue · 0 comments
实现 trim
找到开始的空格 和 结尾的空格
function trim(str) {
return str.replace(/(^\s*)|(\s*$)/g, '')
}