java如何实现在一个字符串中查找另一个字符串
我有两个字符串,比如说boy,heisaboy,要判断boy是不是后者中的一部分,应该怎么写,最好用嵌套循环的方法,请给我发下源代码,谢谢...
我有两个字符串,比如说boy,he is a boy,要判断boy是不是后者中的一部分,应该怎么写,最好用嵌套循环的方法,请给我发下源代码,谢谢
展开
6个回答
展开全部
要判断boy是不是后者中的一部分,不用循环,只要用String类的indexOf函数就行了。
代码如下:
public class HH {
public static void main(String[] args) {
String s="he is a boy";
int result=s.indexOf("boy");
if(result>=0){
System.out.println("boy是he is a boy的一部分");
}else{
System.out.println("boy不是he is a boy的一部分");
}
}
}
运行结果:
boy是he is a boy的一部分
代码如下:
public class HH {
public static void main(String[] args) {
String s="he is a boy";
int result=s.indexOf("boy");
if(result>=0){
System.out.println("boy是he is a boy的一部分");
}else{
System.out.println("boy不是he is a boy的一部分");
}
}
}
运行结果:
boy是he is a boy的一部分
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询