扩展阅读
当前位置: 编程语言>java/jsp
java命名空间java.lang类stringbuilder的类成员方法: lastindexof定义及介绍
发布时间:2014-2-17
本文导语:
lastindexof
public int lastindexof(string str)
返回最右边出现的指定子字符串在此字符串中的索引。将最右边的空字符串 "" 视为出现在索引值 this.length() 处。返回的索引是满足以下条件的最大 k 值:
this.tostring().startswith(str, k)
...