比如,一个字符串,09:15和09:15:30, 想根据 :出现次数匹配。
public class Regular_1{
/*求一个给定的字符串中一个指定字符出现的次数*/
static int times(String s, String regex){
s = " " + s + " ";
String[] result = s.split(regex);
return result.length-1;
}
public static void main(String arg[]){
String str = "09:15和09:15:30";
System.out.println( "'0' 出现次数:" + times(str,"0"));
System.out.println( "'1' 出现次数:" + times(str,"1"));
System.out.println("'5' 出现次数:" + times(str,"5"));
}
}
/**
* 根据:
* 案例12:输入一个字符串,统计字符串中每一个字符出现的次数
* https://www.cnblogs.com/chuijingjing/p/9560661.html
* 代码。
*
*/
public class Regular_2 {
public static void main(String[] args) {
String str = "sdafv187623rtajhsd";
String test = "09:15和09:15:30";
fin(str);
System.out.println("楼主的待测字符串:");
fin(test);
}
public static void fin(String str) {
// 获取第一个字符
char c = str.charAt(0);
// 将第一个字符都替换为空
String str1 = str.replaceAll("" + c, "");
// 计算两个字符串的长度
int len = str.length() - str1.length();
System.out.println(str.charAt(0) + ":" + len);
// 如果替换后的字符串长度大于0.说明还没有统计完,再次调用统计方法
if(str1.length() > 0)
fin(str1);
}
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。