import java.util.Scanner;
public class Counter {
static Scanner scanner = new Scanner(System.in);
public static void count(String s) {
int low, upper, num, others;
low = upper = num = others = 0;
for (int i = 0; i < s.length(); i++) {
if (Character.isDigit(s.charAt(i))) {
num++;
continue;
if (Character.isLowerCase(s.charAt(i))) {
low++;
continue;
if (Character.isUpperCase(s.charAt(i))) {
upper++;
continue;
} else {
others++;
System.out.println(" 大写字母的个数为:" + upper + "\n 小写字母的个数为:" + low+ "\n 数字的个数为: " + num + "\n 其他字符的个数为: " + others);
public static void subCounter(String str1, String str2) {
int counter = 0;
for (int i = 0; i <= str1.length() - str2.length(); i++) {
if (str1.substring(i, i + str2.length()).equalsIgnoreCase(str2)) {
counter++;http://www.huiyi8.com/chajian/ jquery插件库
System.out.println("子字符串的个数为: " + counter);
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("请输入一个字符串:");
String string = scanner.nextLine();
System.out.println("-----------------------------");
// 查询在这个字符串中存在多少个子字符串str。
System.out.println("请输入一个您想查询的子字符串:");
String str = scanner.nextLine();
subCounter(string, str);
相关文章
- 09-17计算字符串中al_num,spance_num,digit_num,other_num的个数
- 09-17字符串s中从第i个位置起取长度为len的子串,函数返回子串链表
- 09-174.#使用pycharm.编写一个函数计算传入字符串中字符的个数
- 09-17SQL中拆分字符串substr及统计字符出现频数replace用法实例讲解
- 09-17js中截取字符串的三个方法 substring()、substr()、slice()及charAt() 方法
- 09-17在一个由小写英文字母(a-z)组成的字符串中,查找最短子串,其头尾字母相同。输出最左边的该类子串。
- 09-17计算字符串中的数字,大小,写字母个数
- 09-17UTF-8编码的字符串拆分成单字、获取UTF-8字符串的字符个数的代码及原理
- 09-17字符串中的连续字符统,并将统计数字插入到原有字符串中 -- C语言
- 09-17python判断字符串中是否包含子字符串