let name = '我是一个程序员是'
let nameS = 'app APP'
1.length 和数组一样用来检查字符串长度
console.log('length:' ,name.length) //length: 8
2.indexOf 和数组一样,检查是否存在某段字符串
console.log('indexOf:' ,name.indexOf('一')) //indexOf: 2
-
lastIndexOf 和数组不一样,这个是从尾部开始查
console.log('lastIndexOf:' ,name.lastIndexOf('是')) // lastIndexOf: 7 -
split('') 根据()里面的值来把字符串分成数组
console.log('split:' ,name.split('')) //split: (8) ["我", "是", "一", "个", "程", "序", "员", "是"] -
replace('需要替换的数据','替换的数据')
console.log('replace:' ,name.replace('一个','一位')) //replace: 我是一位程序员是
6.substring(截取开始位置,结束位置) 截取字符串
console.log('substring:' ,name.substring(4,6)) //substring: 程序
- toLowerCase 字母转小写
console.log('toLowerCase:' ,nameS.toLowerCase()) // toLowerCase: app app
8.toUpperCase 字母转大写
console.log('toUpperCase:' ,nameS.toUpperCase()) //toUpperCase: APP APP
9.String.trim() 去除空格
网友评论