关于输入两个字符串,判断其中一个是不是另一个字符串的子字符串的java 程序的问题
public class Test {
public static void main(String[] args) {
String str_1 = “abcdefg”;
String str_2 = “cde”;
if(str_1.indexOf(str_2) != -1)
System.out.println(“是子串”);
else
System.out.println(“不是子串”);
}
}