uniapp开发时,会遇到一些字符串处理,比如去除字符串中的空格的要求。
trim(str, pos)
该方法可以去除空格,分别可以去除所有空格,两端空格,左边空格,右边空格,默认为去除两端空格
str
pos
console.log(uni.$u.trim('abc b ', 'all')); // 去除所有空格
console.log(uni.$u.trim(' abc ')); // 去除两端空格
uniapp开发时,会遇到一些字符串处理,比如去除字符串中的空格的要求。
该方法可以去除空格,分别可以去除所有空格,两端空格,左边空格,右边空格,默认为去除两端空格
str
pos
console.log(uni.$u.trim('abc b ', 'all')); // 去除所有空格
console.log(uni.$u.trim(' abc ')); // 去除两端空格