当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.String.indexOf()用法及代码示例



描述

这个java.lang.String.indexOf(int ch) 方法返回此字符串中第一次出现指定字符的索引。

如果一个带有值的字符ch出现在此 String 对象表示的字符序列中,然后返回第一次出现的索引(Unicode 代码单元)。

声明

以下是声明java.lang.String.indexOf()方法

public int indexOf(int ch)

参数

ch─ 这是一个字符(Unicode 代码点)。

返回值

此方法返回此对象表示的字符序列中该字符第一次出现的索引,如果该字符没有出现,则返回 -1。

异常

NA

示例

下面的例子展示了 java.lang.String.indexOf() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StringDemo {

   public static void main(String[] args) {

      String str = "This is tutorialspoint";
       
      // 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

相关用法


注:本文由纯净天空筛选整理自 Java.lang.String.indexOf() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。