Java String indexOf(String str)方法拥有什么功能呢?
Java String indexOf(String str)方法的功能
indexOf(String str)
方法的功能:返回指定字符串在 字符串中第一次出现的索引位置,
当未找到出现的位置时,则返回-1
语法
int indexOf(String str)
参数
str:
待查找索引位置的子字符串
返回值
- 返回
str
所在的索引值
例
import java.io.*;
public class testClass {
public static void main(String args[]) {
String Str = new String("Welcome to java265.com");
String s1= new String("java265");
System.out.println("Index :" + Str.indexOf(s1));
}
}
-----运行以上代码,将输出以下信息----
Index :11
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。