lastIndexOf()
源码:
public int lastIndexOf(String str) {return lastIndexOf(str, length());}
lastIndexOf(String str):用于在一个字符串中查找指定字符最后一次出现的位置
subString()
源码:
public String substring(int beginIndex) {if (beginIndex < 0) {throw new StringIndexOutOfBoundsException(beginIndex);}int subLen = length() - beginIndex;if (subLen < 0) {throw new StringIndexOutOfBoundsException(subLen);}if (beginIndex == 0) {return this;}return isLatin1() ? StringLatin1.newString(value, beginIndex, subLen): StringUTF16.newString(value, beginIndex, subLen);}
subString(int beginIndex):从指定的起始索引开始截取到字符串的末尾,返回一个新的字符串。
subString(int beginIndex,int endIndex):指定的起始索引开始,到指定的结束索引(不包括该位置的字符)截取子字符串,返回一个新的字符串。