编写一个java程序输入两个字符串判断第一个字符串是不是第二个的子川
3个回答
2015-04-02
展开全部
java.lang.String.contains() 方法返回true,当且仅当此字符串包含指定的char值序列
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class MyTest{
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
String str1=sc.next();
String str2=sc.next();
if(str2.indexOf(str1)>=0){
System.out.println("是我的子字符串");
}else{
System.out.println("明显不是子字符串");
}
}
}
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
String str1=sc.next();
String str2=sc.next();
if(str2.indexOf(str1)>=0){
System.out.println("是我的子字符串");
}else{
System.out.println("明显不是子字符串");
}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询