Skip to content

Instantly share code, notes, and snippets.

@guxuerui
Created August 17, 2020 09:41
Show Gist options
  • Save guxuerui/ea68666e6380543aff940f563c94a91e to your computer and use it in GitHub Desktop.
Save guxuerui/ea68666e6380543aff940f563c94a91e to your computer and use it in GitHub Desktop.
正则实现trim()功能去除字符串前后空格
function myTrim(str){
let reg = /^\s+|\s+$/g;
return str.replace(reg,"");
}
console.log(myTrim(" abcd ")); // abcd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment