vue开发----关于字符串去除空格的方法
第一种:正则匹配str = str.replace(/\s*/g,''); // 去除字符串内所有的空格str = str.replace(/^\s*|\s*$/g,''); // 去除字符串内两头的空格str = str.replace(/^\s*/,''); // 去除字符串内左侧的空格str = str.replace(/(\s*$)/g,''); // 去除字符串内右侧的...
·
第一种:正则匹配
str = str.replace(/\s*/g,''); // 去除字符串内所有的空格
str = str.replace(/^\s*|\s*$/g,''); // 去除字符串内两头的空格
str = str.replace(/^\s*/,''); // 去除字符串内左侧的空格
str = str.replace(/(\s*$)/g,''); // 去除字符串内右侧的空格
第二种:js trim()方法
s = str.trim(); // 返回一个新字符串,去除字符串两端的空格
s = str.trimStart();
s = str.trimLeft(); // 返回一个新字符串,表示从其开头(左端)剥离空格的调用字符串。
s = str.trimEnd();
s = str.trimRight(); // 返回一个新字符串,表示从其(右)端剥去空白的调用字符串。
更多推荐
已为社区贡献7条内容
所有评论(0)