java.lang.String.indexOf(String str)方法实例
java.lang.String.indexOf(String str) 方法返回该字符串指定的子串中第一次出现处的索引。返回整数是最小的k值:this.startsWith(str, k) 是true。
声明
以下是java.lang.String.indexOf()方法声明
public int indexOf(String str)
参数
-
str-- 这是一个字符串值。
返回值
如果字符串参数时作为该子对象中此方法返回, 那么第一个子字符串的第一个字符的索引被返回;如果它不出现的一个子串,则返回-1。
异常
-
NA
例子
下面的例子显示java.lang.String.indexOf()方法的使用。
package com.yiibai; import java.lang.*; 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