java中String.indexOf()用法

Posted 不爱熬夜的猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中String.indexOf()用法相关的知识,希望对你有一定的参考价值。

查找指定字符或字符串在字符串中第一次出现地方的索引,未找到的情况返回 -1.

例如

String.indexOf(String str)

String str1="012345";
String str2="23";
System.out.println( str1.indexOf(str2) );

输出结果:2。

重载方法有

String.indexOf(String str,int index)

从index的地方开始找,返回第一次出现的索引

String str1="012345012345";
String str2="23";
System.out.println( str1.indexOf(str2,5) );

输出结果:8.

 

以上是关于java中String.indexOf()用法的主要内容,如果未能解决你的问题,请参考以下文章

java 常用类-String

C# string.IndexOf() 返回意外值

js中indexOf()的使用

java怎么查找字符串第一个字符

NET问答: 为什么 String.IndexOf 在 .net5 和 netcore3 中返回值不一样?

String.IndexOf 方法笔记