字符串的截取
Posted notesblog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串的截取相关的知识,希望对你有一定的参考价值。
//方法返回一个字符串中从指定位置开始到指定字符数的字符
substr()
//语法
str.substr(start[, length])
//start
//开始提取字符的位置。如果为负值,则被看作 strLength + start,其中 strLength 为字符串的长度(例如,如果 start 为 -3,则被看作 strLength + (-3))。
//length
//可选。提取的字符数。
//例子:使用 substr
var str = "abcdefghij";
// (1,2): bc
console.log("(1,2): " + str.substr(1,2));
// (-3,2): hi
console.log("(-3,2): " + str.substr(-3,2));
// (-3): hij
console.log("(-3): " + str.substr(-3));
// (1): bcdefghij
console.log("(1): " + str.substr(1));
// (-20, 2): ab
console.log("(-20, 2): " + str.substr(-20,2));
// (20, 2): 无内容
console.log("(20, 2): " + str.substr(20,2));
以上是关于字符串的截取的主要内容,如果未能解决你的问题,请参考以下文章