Java StringBuilder lastIndexOf()方法
java.lang.StringBuilder.lastIndexOf(String str, int fromIndex) 方法返回该字符串指定的子字符串的最后一次出现处的索引。该参数fromIndex表示开始搜索的索引。
1 语法
public int lastIndexOf(String str, int fromIndex)
2 参数
str : 这是要搜索的字符串。
fromIndex : 这开始搜索的索引。
3 返回值
此方法返回指定子字符串的最后一次出现的这个序列中的索引。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java StringBuilder lastIndexOf()方法
*/
import java.lang.*;
public class StringBuilderDemo {
public static void main(String[] args) {
StringBuilder str = new StringBuilder("tutorials point");
System.out.println("string = " + str);
/* returns the index within this string of the rightmost occurrence of the
specified substring */
System.out.println("last index of i = " + str.lastIndexOf("i"));
// returns index as the substring is found with fromIndex 10
System.out.print("last index of als = ");
System.out.println(str.lastIndexOf("als",10));
// returns -1 as fromIndex 2 can't find the substring
System.out.print("last index of ori = ");
System.out.println(str.lastIndexOf("ori",2));
}
}
输出结果为:
string = tutorials point
last index of i = 12
last index of als = 6
last index of ori = -1
热门文章
优秀文章