String的indexof的使用

Posted F领主

tags:

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

public class Test8 {

public static int getNum() {
int num = 555667;
boolean b = true;
int temp = 1;
int he = 0;
while(b){
temp++;
he = num*temp;
String str = he+"";
//indexof 就是看str包含不包含这个数字 包含不等于-1
if(str.indexOf("1") != -1){
if(str.indexOf("2") != -1){
if(str.indexOf("3") != -1){
if(str.indexOf("4") != -1){
if(str.indexOf("5") != -1){
if(str.indexOf("6") != -1){
if(str.indexOf("7") != -1){
if(str.indexOf("8") != -1){
if(str.indexOf("9") != -1){
return he;
}
}
}
}
}
}
}
}
}
}
return 0;
}

public static void main(String[] args) {
System.out.println(Test8.getNum());
}
}

以上是关于String的indexof的使用的主要内容,如果未能解决你的问题,请参考以下文章

String的indexof的使用

JAVA indexOf()的使用

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

String.IndexOf 方法笔记

集合/字符串.包含与集合/字符串.IndexOf

String的indexOf方法