- 去掉字符串前后空格' '
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的时候说明 没有空格' '
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的时候说明 没有空格' '
本文标题:判断字符串是否有空格' '或其他等
本文链接:https://www.haomeiwen.com/subject/zdxaixtx.html
网友评论