Java中字符串中字符的搜索索引
使用该indexOf()方法搜索字符串中字符的索引。
假设以下是我们的字符串。
String myStr = "amit";
现在,让我们找到以上字符串中字符“ t”的索引。
strIndex = myStr.indexOf('t');以下是最后一个示例。
示例
public class Demo {    public static void main(String[] args) {
       String myStr = "amit";
       int strIndex = 0;
       System.out.println("String: "+myStr);
       //查找字符t的索引
       strIndex = myStr.indexOf('t');
       System.out.println("Character m found at index: "+strIndex);
    }
}
输出结果
String: amitCharacter m found at index: 3
以上是 Java中字符串中字符的搜索索引 的全部内容, 来源链接: utcz.com/z/350197.html

