关于indexof和substring经常记不住的点
Posted Sam168666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于indexof和substring经常记不住的点相关的知识,希望对你有一定的参考价值。
indexof 找到的字符位置是 字符串从0位开始算起的。
lastIndexOf也一样,http://localhost:8080/aaa,的lastIndexOf("/")是21位。
substring(0,a)截取的是,从0位开始算起的,直到第(a-1)位字符,不包含a位字符,例如:
var str = "http://localhost:8080/aaa";
substring(0,str.lastIndexOf("/"))得到的是"http://localhost:8080"。
以上是关于关于indexof和substring经常记不住的点的主要内容,如果未能解决你的问题,请参考以下文章
js中,indexOf()substring()和substr()的区别