public class strstr {
public static void main(String[] args) {
String str1 = args[0];
String str2 = args[1];
Str stri = new Str(str1,str2);
stri.strstr1();
}
}
class Str {
String s1;
String s2;
String s3 = "111";
public Str(String st1,String st2){
s1 = st1;
s2 = st2;
}
public String strstr1(){
int lens1 = s1.length()-2;
int lens2 = s2.length()-2;
int len = lens1 - lens2;
int j = 0;
if(lens1<=lens2){
System.out.println("error:第二个字符串长度应该小于第一个字符串。");
}
else{
for(int i=0;i<len;i++)
{
for( j = 0;j<lens2;j++)
{
if(s1.charAt(i+j)!=s2.charAt(j))
break;
}
if(j == lens2)
{
System.out.println("第二个字符串是第一个字符串的子串!");
break;
}
}
System.out.println("第二个字符串不是第一个字符串的子串!");
}
return s3;
}
}
判断字符串中是否含有某个子串
最新推荐文章于 2022-06-10 16:08:27 发布