Java String indexOf(String str)方法
描述
此方法返回指定子字符串在此字符串中首次出现的索引。如果它不作为子字符串出现,则返回-1。
语法
以下是此方法的语法 –
int indexOf(String str)
参数
这是参数的详细信息:
- str - 一个字符串。
返回值
- 请参阅描述。
示例
import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Tutorialspoint.com");
String SubStr1 = new String("Tutorials");
System.out.println("Found Index :" + Str.indexOf( SubStr1 ));
}
}
这将产生以下结果−
输出
Found Index :11