判断字符串是否有空格' '或其他等
2017-12-13 本文已影响0人
xiaoaiai
- 去掉字符串前后空格' '
const str = ' abc def '
const newStr = str.trim()
console.log(newStr) // 'abc def' [去掉了前后空格]
- 判断字符串中是否有空格' '
const str = ' abc def '
if (str.indexOf(' ') !== -1) console.log('str中有空格') // indexOf(' ') === -1的时候说明 没有空格' '