JS截取字符串方法

1.substring
let str = "Hello can I help you?"
console.log(str.substring(6))//can I help you?   除了前6位全部都截取出来
console.log(str.substring(6, 9))// can  从第7位开始截取到第九位
console.log(str.substring(9, 6))//can  如果后一位参数大于第一位会自动调换位置
console.log(str.substring(2, -3))//He  如果后一位为负数自动成0
console.log(str.substring(-4))//会输出全部也就是无效
console.log(str.substring(-3, -2))//不会有任何输出
// console.log(str.substing(-4))//负数会自动看成0
2.substr (不建议使用已弃用
let str1 = 'Hello,can I help you?'
console.log(str1.substr(-4))//you? 截取倒数四位后的全部
console.log(str1.substr(-2, 3))//u? 截取倒数2位后不超过三位数字
console.log(str1.substr(1, 3))//ell 从第二个字符开始提取后面不超过3位字符
console.log(str1.substr(6))//can I help you? 跟substring()一样 从第7开始到最后
console.log(str1.substr(1, -3))// length位负数 没有结果输出
3.slice
var slice = "Hello,can I help you?"
console.log(slice.slice(6)) //can I help you? 跟substring和substr 一样 从第7位后全部
console.log(slice.slice(6, 9))//can 提取6到9不包含第九位
console.log(slice.slice(9, 6))//第一个参数大于第二个参数没有结果输出
console.log(slice.slice(-4))//you? 截取倒数四位后的全部
console.log(slice.slice(-4, -1))//you/提取从倒数第四个字符开始到倒数第二个字符之间的所有字符

你可能感兴趣的:(js学习,javascript,前端,开发语言)