Java在长字符串中查找短字符串的实现多种方法

网友投稿 268 2023-02-12

Java在长字符串中查找短字符串的实现多种方法

方案一:

补充:在输入短字符串时,如果有空格,可以在比较前用 trim()方法截取前后空白

/*该方法只适用于有特殊分割符号的字符串*/

System.out.println("请输入字符串:");

Scanner str1=new Scanner(System.in);

String s=str1.nextLine();

System.out.println("请输入第二个字符串:");

Scanner str2=new Scanner(System.in);

String s2=str2.next();

String[] i= s.split(" ");//对长字符串进行分割得到一个字符串数组

int o=0;

for (int j = 0; j

if (s2.equals(i[j])==true){//对字符数组进行遍历比较

o++;

}

}

System.out.println("次数为:"+o);

}

方案二:

//如果替换未造成字符串长度损失,该方法则不适用

System.out.println("请输入一个长字符串:");

Scanner str1 = new Scanner(System.in);

String s = str1.nextLine();

System.out.println("请输入短字符串:");

String s1 = str1.nextLine();

String s3 = s.replaceAll(s1, "0");//字符替换

int b1 = s.length() - s3.length();//计算出s字符串损失的长度

int b2 = b1 / (s1.length() - 1);//根据规律计算出s1字符串在s字符串中出现的次数

System.out.println("次数为:"+b2);

方案三:

/XWncpvzkxS/该方法适用于各种XWncpvzkxS模式

System.out.println("请输入一个长字符串:");

Scanner str1 = new Scanner(System.in);

String s = str1.nextLine();

System.out.println("请输入短字符串:");

String s1 = str1.nextLine();

int c=0;

for (int i = 0; i

if (s1.equals(s.substring(i,i+s1.length()))){/*字符串比较,对长字符串进行截取,之后用截取得到的字符串与短字符串进行比较*/

++c;

}

}

System.out.println("次数为: " + c);

if (s2.equals(i[j])==true){//对字符数组进行遍历比较

o++;

}

}

System.out.println("次数为:"+o);

}

方案二:

//如果替换未造成字符串长度损失,该方法则不适用

System.out.println("请输入一个长字符串:");

Scanner str1 = new Scanner(System.in);

String s = str1.nextLine();

System.out.println("请输入短字符串:");

String s1 = str1.nextLine();

String s3 = s.replaceAll(s1, "0");//字符替换

int b1 = s.length() - s3.length();//计算出s字符串损失的长度

int b2 = b1 / (s1.length() - 1);//根据规律计算出s1字符串在s字符串中出现的次数

System.out.println("次数为:"+b2);

方案三:

/XWncpvzkxS/该方法适用于各种XWncpvzkxS模式

System.out.println("请输入一个长字符串:");

Scanner str1 = new Scanner(System.in);

String s = str1.nextLine();

System.out.println("请输入短字符串:");

String s1 = str1.nextLine();

int c=0;

for (int i = 0; i

if (s1.equals(s.substring(i,i+s1.length()))){/*字符串比较,对长字符串进行截取,之后用截取得到的字符串与短字符串进行比较*/

++c;

}

}

System.out.println("次数为: " + c);

if (s1.equals(s.substring(i,i+s1.length()))){/*字符串比较,对长字符串进行截取,之后用截取得到的字符串与短字符串进行比较*/

++c;

}

}

System.out.println("次数为: " + c);

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:IntelliJ IDEA2020.3详细安装教程
下一篇:JetBrains IntelliJ IDEA 配置优化技巧
相关文章

 发表评论

暂时没有评论,来抢沙发吧~