JAVA字符串去掉指定字符 java如何统计字符串中每个字符出现的次数?
浏览量:2739
时间:2021-03-16 14:31:01
作者:admin
java如何统计字符串中每个字符出现的次数?
public class Test { public static void main(String[] args) { // 指定字符和字符串 char c = "1" String string = "123456789111" System.out.println(getCharCount(c, string)) } public static int getCharCount(char c, String string){ int count = 0 for (int i = 0 i < string.length() i ) { char temp = string.charAt(i) if(c == temp) count } return count }}
JAVA字符串去掉指定字符 java 字符串比较 java字符串去掉特殊字符
版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。