function myTrim(str) { const reg = /^\s*|\s*$/g; return str.replace(reg, ''); } myTrim(' 123 123 '); // 123 123
← 生成验证码 比较版本号 →