Java - String indexOf() 方法



描述

Java String indexOf(int ch) 方法返回指定字符在此字符串中第一次出现的索引。

如果字符值ch出现在此 String 对象表示的字符序列中,则返回第一次出现的索引(Unicode 代码单元)。

声明

以下是Java String indexOf() 方法的声明

public int indexOf(int ch)

参数

ch − 这是一个字符(Unicode 代码点)。

返回值

此方法返回字符在此对象表示的字符序列中第一次出现的索引,如果字符不存在则返回 -1。

异常

String indexOf(int ch, int fromIndex) 方法

描述

Java String indexOf(int ch, int fromIndex) 方法返回指定字符在此字符串中第一次出现的索引,从指定索引开始搜索。

如果字符值ch出现在此 String 对象表示的字符序列中,且索引不小于fromIndex,则返回第一次出现的索引。

声明

以下是Java String indexOf() 方法的声明

public int indexOf(int ch, int fromIndex)

参数

  • ch − 这是一个字符(Unicode 代码点)。

  • fromIndex − 这是开始搜索的索引。

返回值

此方法返回字符在此对象表示的字符序列中第一次出现的索引,该索引大于或等于 fromIndex,如果字符不存在则返回 -1。

异常

String indexOf(String str) 方法

描述

Java String indexOf(String str) 方法返回指定子字符串在此字符串中第一次出现的索引。返回的整数是最小的值 k,使得:this.startsWith(str, k) 为真。

声明

以下是Java String indexOf() 方法的声明

public int indexOf(String str)

参数

str − 这是一个字符串的值。

返回值

此方法返回如果字符串参数作为子字符串出现在此对象中,则返回第一个此类子字符串的第一个字符的索引;如果它没有作为子字符串出现,则返回 -1。

异常

String indexOf(String str, int fromIndex) 方法

描述

Java String indexOf(String str, int fromIndex) 方法返回指定子字符串在此字符串中第一次出现的索引,从指定索引开始。返回的整数是最小的值 k,对于该值:

k > = Math.min(fromIndex, this.length()) && this.startsWith(str, k)

如果不存在此类 k 值,则返回 -1。

声明

以下是Java String indexOf() 方法的声明

public int indexOf(String str, int fromIndex)

参数

  • str − 这是要搜索的子字符串。

  • fromIndex − 这是开始搜索的索引。

返回值

此方法返回指定子字符串在此字符串中第一次出现的索引,从指定索引开始。

异常

从字符串中获取字符索引示例

以下示例显示了 Java String indexOf() 方法的使用。我们创建了一个字符串字面量,其值为"This is tutorialspoint"。然后使用indexOf() 方法,我们正在检索e的索引。

package com.tutorialspoint;

public class StringDemo {

   public static void main(String[] args) {

      String str = "This is tutorialspoint";
       
      // returns the index of occurrence of character s
      System.out.println("index of letter 's' = " 
         + str.indexOf('s')); 
      
      // returns -1 as character e is not in the string
      System.out.println("index of letter 'e' = " 
         + str.indexOf('e'));
   }
}

让我们编译并运行上述程序,这将产生以下结果:

index of letter 's' = 3
index of letter 'e' = -1

从字符串中获取字符串索引示例

以下示例显示了 Java String indexOf() 方法的使用。我们创建了一个字符串字面量,其值为"This is tutorialspoint"。然后使用indexOf() 方法,我们正在检索e的索引。

package com.tutorialspoint;

public class StringDemo {

   public static void main(String[] args) {
 
      String str = "This is tutorialspoint";

      // returns positive value as character is located
      System.out.println("index of letter 't' =  "
         + str.indexOf('t', 14)); 
      
      // returns positive value as character is located
      System.out.println("index of letter 's' =  "
         + str.indexOf('s', 10)); 
      
      // returns -1 as character is not in the string
      System.out.println("index of letter 'e' =  "
         + str.indexOf('e', 5));
   }
}

让我们编译并运行上述程序,这将产生以下结果:

index of letter 't' = 21
index of letter 's' = 16
index of letter 'e' = -1

从字符串中获取字符索引示例

以下示例显示了 Java String indexOf() 方法的使用。我们创建了一个字符串字面量,其值为"Collections of tutorials at tutorials point"。然后使用indexOf() 方法,我们正在检索tutorialsadmin的索引。

package com.tutorialspoint;

public class StringDemo {

   public static void main(String[] args) {

      String str1 = "Collections of tutorials at tutorials point";
     
      // returns index of first character of the substring "tutorials" 
      System.out.println("index =  " + str1.indexOf("tutorials")); 
      
      // returns -1 as substring "admin" is not located
      System.out.println("index =  " + str1.indexOf("admin"));    
   }
}

让我们编译并运行上述程序,这将产生以下结果:

index = 15
index = -1

使用 FromIndex 从字符串中获取字符串索引示例

以下示例显示了 Java String indexOf() 方法的使用。我们创建了一个字符串字面量,其值为"Collections of tutorials at tutorials point"。然后使用indexOf() 方法,我们正在检索tutorialsadmin的索引。

package com.tutorialspoint;

public class StringDemo {

   public static void main(String[] args) {

      String str1 = "Collections of tutorials at tutorials point";
     
      /*  search starts from index 10 and if located it returns 
         the index of the first character of the substring "tutorials" */
      System.out.println("index = " + str1.indexOf("tutorials", 10)); 
      
      /* search starts from index 9 and returns -1 as substring "admin"
         is not located */
      System.out.println("index = " + str1.indexOf("admin", 9));     
   }
}

让我们编译并运行上述程序,这将产生以下结果:

index = 15
index = -1
java_lang_string.htm
广告