java怎么查询一个字符串中重复的字符,并且计算他出现的次数。
String str="abcdabcdabcdabcd";
查询出重复的字符并且计算abcd出现的次数。
不是单一个字符串 是只要有重复的就统计次数 展开
public class FindSubStringClass {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String str = "abcdabcdabcdabcd";
String subStr = "abcd";
int cursor = 0, subStrLen = subStr.length(), totalStrLen = str.length();
int count = 0; // 表示重复字符的个数
while ((cursor + subStrLen) <= totalStrLen) {
String tempStr = str.substring(cursor, cursor + subStrLen); // 获取字符串中的子字符串
if (tempStr.equals(subStr)) {
count++;
cursor += subStrLen;
} else {
cursor++;
}
}
System.out.println(subStr + "出现在" + str + "中的次数为" + count + "次");
}
}
public static void main(String[] args) {
while (true) {
BufferedReader br = new BufferedReader(
new InputStreamReader(System.in));
System.out.println("请输入你要查找的字符串,如要结束请键入END:");
String s = "";
try {
s = br.readLine();
if (s.equals("END") || s.equals("end")) {
System.out.println("退出程序");
System.exit(0);
}
for (int r = 0; r < s.length()-1; r++) {
for (int i = r + 1; i <= s.length(); i++) {
if (i <= s.length()) {
String dd = s.substring(r, i);
if (s.indexOf(dd) != -1) {
String tmps = s.replaceAll(dd, "");
int len=(s.length()-tmps.length())/dd.length();
if(len>1){//只有大于一次的才记录
System.out.println(dd+"重复出现的次数:"+len);
}
}
}
}
}
} catch (IOException e) {
System.out.println("程序出错:" + e.getMessage());
}
}
}
}
public static void main(String[] args) {
String str="abcdabcdabcdabcd";
int count=0;
//找出所有"abcd"的位置,并且打印出现次数,(循环+指定起始位置)
int t=0;
for(int i=0;i<str.length();i++){
t=str.indexOf("abcd",i);
if(t!=-1){
System.out.println("出现的索引为:"+t);//打印出出现得索引
// System.out.println(str.substring(t,t+"abcd".length()));//此句话是验证是否匹配的,它的结果是"abcd"
count++;//次数增加
i=t;//指定起始位置
}
}
System.out.println("出现的次数为:"+count);
}
}
不是单一的字符串 是只要重复就统计次数
那这可就多啦,像题目中的那个字符串,a/ab/abc/abcd/b/bc/bcd.....不都重复了嘛,那太复杂了···
public class Test {
public static void main(String[] args) {
String s = "abcdaebijkd";
ArrayList list = new ArrayList();
for(int i=0; i<s.length(); i++){
char c = s.charAt(i);
if(s.indexOf(c,i+1)>-1){
Character ch = new Character(c);
if(!list.contains(ch))
list.add(ch);
}
}
for(int i=0; i<list.size(); i++)
System.out.print(list.get(i)+",");
}
}
string
str="laslkav;lkjsn;skldnf;";
string
m=";";
string[]
r=str.split(m);
system.out.println(r.length-1);