当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java StringBuilder lastlastIndexOf()用法及代码示例


用法:

    public int lastIndexOf (String s);
    public int lastIndexOf (String s, int st_idx);

StringBuilder类lastIndexOf()方法

  • lastIndexOf() 方法在 java.lang 包中可用。
  • lastIndexOf (String s) 方法用于从最右侧搜索给定字符串出现的此字符串中的索引。
  • lastIndexOf (String s, int st_idx) 方法用于从最右侧搜索此字符串中给定子字符串出现的索引,搜索将从 st_idx 开始。
  • 这些方法可能会在返回出现字符串的最后一个索引时抛出异常。
    NullPointerException - 当给定的字符串参数为空时,可能会抛出此异常。
  • 这些是非静态方法,只能通过类对象访问,如果我们尝试使用类名访问这些方法,则会出现错误。

参数:

  • 在第一种情况下,String s- 表示要搜索的子字符串。
  • 在第二种情况下,String s, int st_idx
    • String s- 与第一种情况中的定义类似。
    • int st_idx- 表示开始搜索的索引。

返回值:

这个方法的返回类型是int,它返回给定子字符串最后一次出现在此对象中的索引。

例:

// Java program to demonstrate the example 
// of lastIndexOf () method of StringBuilder class

public class LastIndexOf {
    public static void main(String[] args) {
        // Creating an StringBuilder object
        StringBuilder st_b = new StringBuilder("Java World ");

        // Display st_b 
        System.out.println("st_b = " + st_b);

        // By using lastIndexOf("a") method is to return the last index of 
        // given string "a" in st_b object 
        // (first a at index 1 and second a at index 3)
        // it returns 3
        int index1 = st_b.lastIndexOf("a");

        // Display st_b index
        System.out.println("st_b.lastIndexOf(String) = " + index1);

        // By using lastIndexOf("a",1) method is to return the last index of 
        // given string "a" in st_b object 
        // (first a at index 1 and second a at index 3)
        // it returns 3 and searching starts at index 1
        int index2 = st_b.lastIndexOf("a", 1);

        // Display st_b index
        System.out.println("st_b.lastIndexOf(String, int) = " + index2);
    }
}

输出

st_b = Java World 
st_b.lastIndexOf(String) = 3
st_b.lastIndexOf(String, int) = 1


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java StringBuilder lastlastIndexOf() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。