Java字符串indexOf()方法示例。

IndexOf()String类的方法接受一个字符作为参数,并返回指定字符首次出现的索引。如果String不包含指定字符,则返回-1。

示例

import java.io.*;
public class Test {
   public static void main(String args[]) {
      String Str = new String("Welcome to Nhooo.com");
      System.out.print("找到的索引:" );
      System.out.println(Str.indexOf( 'o' ));
   }
}

输出结果

找到的索引:4