java.lang.String.indexOf(int ch)方法实例
java.lang.String.indexOf(int ch) 方法返回该字符串指定字符第一次出现处的索引。
如果在通过第一这样发生的这个字符串对象,则索引(Unicode代码单元)所表示的字符序列ch值的字符被返回。
声明
以下是java.lang.String.indexOf()方法声明
public int indexOf(int ch)
参数
-
ch-- 这是一个字符(Unicode代码点)。
返回值
此方法返回字符在该对象表示的字符序列中第一次出现的索引,或者-1,如果该字符不会找到。
异常
-
NA
例子
下面的例子显示java.lang.String.indexOf()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str = "This is yiibai"; // 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