/*
* 你想在字符串中"aasdasfsdghyerejtwieypg;lmgf;lm;lmbmmfdmgjsjotoopwop"
* 查找lmgf
*/
public class Test1{
public static void main(String[] args) {
String string ="aasdasfsdghyerejtwieypg;lmgf;lm;lmbmmfdmgjsjotoopwop";
boolean b=string.contains("lmgf"); // 看看字符串中是否包含“lmgf”
if (b==true) { //如果包含 就返回字符串“lmgf”在字符串中出现的位置
int a =string.indexOf("lmgf");
System.out.println(a);
}else{ //如果不包含
System.out.println("您要查找的字符串不存在");
}
}
}
我自己写的 你看看 很简单的。 |