java 常用类-String
Posted leizz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 常用类-String相关的知识,希望对你有一定的参考价值。
1.string.indexOf(str);
查找指定字符串在string中的第一次出现的索引。未找到返回-1.
String str1="012345";
String str2="23";
System.out.println( str1.indexOf(str2) );//2
2.string。indexOf(string str,int index);
从索引index位开始,查找str在string中的索引位置。
String str1="012345012345";
String str2="23";
System.out.println( str1.indexOf(str2,5) );//8
以上是关于java 常用类-String的主要内容,如果未能解决你的问题,请参考以下文章