字符串拆分-查找字符

Posted baichang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串拆分-查找字符相关的知识,希望对你有一定的参考价值。

 1 package demo3;
 2 
 3 import java.util.Scanner;
 4 
 5 //输入一个字符串,仔输入要查找的字符,判断该字符仔输入字符串中出现的次数
 6 public class FindStr {
 7     public static void main(String[] args) {
 8         Scanner input=new Scanner(System.in);
 9         System.out.print("请输入字符串:");
10         String str=input.next();
11         System.out.print("请输入要查找的字符:");
12         String s=input.next();
13         //实现方式一
14 //        String[] a=str.split(s);
15 //        System.out.println(str+"中包含"+(a.length-1)+"个"+s);  //如果查找的是最后一个字符会出现少1的情况,存在bug
16         
17         
18 /*        String[] temp=new String[str.length()];
19         //特定字符出现的次数
20         int count=0;
21         for (int i = 0; i < temp.length; i++) {
22             temp[i]=str.substring(i, i+1);
23             if(s.equals(temp[i])) {
24                 count++;
25             }
26         }*/
27         
28         //实现方式二
29         int count=0;
30         for (int i = 0; i < str.length(); i++) {
31             char a=str.charAt(i);   
32             if((a+"").equals(s)) {
33                 count++;
34             }
35         }
36         System.out.println("""+str+""中包含"+count+"个""+s+""");
37     }
38 }

 

以上是关于字符串拆分-查找字符的主要内容,如果未能解决你的问题,请参考以下文章

字符串拆分-查找字符

查找所有字符串拆分组合

查找字符串中最后一次出现的数字,并按该值拆分字符串

C ++拆分字符串基于/使用(增强)正则表达式来查找令牌

excel或wps查找文本字符串子串或拆分字符串公式

如何使用 re.split 在 python 中拆分两列从 CSV 中查找字符串值