Java怎么查找字符串大写_Java程序查找字符串中大写,小写,数字和特殊字符的百分比...

将给定的字符串转换为数组中每个字符的字符数组,使用 Character 类的 isUpperCase ()、 isLowerCase ()、 isDigit ()方法验证它是否为大写、小写、数字或任何其他字符。

示例

public class Sample2 {

public static void main(String args[]) {

String data = "Hello HOW are you MR 51";

char [] charArray = data.toCharArray();

int upper = 0;

int lower = 0;

int digit = 0;

int others = 0;

int totalChars = data.length();

for(int i=0; i

if (Character.isUpperCase(charArray[i])) {

upper++;

} else if(Character.isLowerCase(charArray[i])) {

lower++;

} else if(Character.isDigit(charArray[i])){

digit++;

} else {

others++;

}

}

System.out.println("字符串的总长度:"+totalChars);

System.out.println("大写字母:"+upper);

System.out.println("Percentage of upper case letters: "+(upper*100)/totalChars);

System.out.println("小写:"+lower);

System.out.println("小写字母的百分比:"+(lower*100)/totalChars);

System.out.println("Digit :"+digit);

System.out.println("数字百分比:"+(digit*100)/totalChars);

System.out.println("Others :"+others);

System.out.println("其他字符的百分比:"+(others*100)/totalChars);

}

}

输出结果字符串的总长度:23

大写字母:6

Percentage of upper case letters: 26

小写:10

小写字母的百分比:43

Digit :2

数字百分比:8

Others :5

其他字符的百分比:21

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,我会逐个回答你的问题。 首先,我来回答你的第一个问题。以下是生成随机字符串并写入文件的 Python 代码: ```python import random # 打开文件 file = open('test.txt', 'w') # 定义可选字符 chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\n\r*&^$' # 写入随机字符串 count = 0 while count < 1000: char = chr(random.randint(1, 122)) if char in chars: file.write(char) count += 1 # 关闭文件 file.close() ``` 这段代码会生成长度为 1000 的随机字符串,并写入到文件 `test.txt` 。文件包含大写字母、小写字母、数字和一些特殊符号。 注意,我们使用了 `chr()` 函数将 ASCII 码转换为字符。 接下来,我回答你的第二个问题。以下是两种不同的方法统计 `test.txt` 文件大写字母、小写字母和数字的频率及百分比: 方法一: ```python # 打开文件 file = open('test.txt', 'r') # 统计字符数和各类字符数 total_count = 0 upper_count = 0 lower_count = 0 digit_count = 0 for line in file: for char in line: # 统计字符数 total_count += 1 # 判断字符类别并统计 if char.isupper(): upper_count += 1 elif char.islower(): lower_count += 1 elif char.isdigit(): digit_count += 1 # 计算百分比 upper_percent = upper_count / total_count * 100 lower_percent = lower_count / total_count * 100 digit_percent = digit_count / total_count * 100 # 输出结果 print(f"大写字母:{upper_count},占比:{upper_percent:.2f}%") print(f"小写字母:{lower_count},占比:{lower_percent:.2f}%") print(f"数字:{digit_count},占比:{digit_percent:.2f}%") # 关闭文件 file.close() ``` 方法二: ```python # 打开文件 file = open('test.txt', 'r') # 统计字符数和各类字符数 total_count = 0 upper_count = 0 lower_count = 0 digit_count = 0 for line in file: for char in line: # 统计字符数 total_count += 1 # 判断字符类别并统计 if 'A' <= char <= 'Z': upper_count += 1 elif 'a' <= char <= 'z': lower_count += 1 elif '0' <= char <= '9': digit_count += 1 # 计算百分比 upper_percent = upper_count / total_count * 100 lower_percent = lower_count / total_count * 100 digit_percent = digit_count / total_count * 100 # 输出结果 print(f"大写字母:{upper_count},占比:{upper_percent:.2f}%") print(f"小写字母:{lower_count},占比:{lower_percent:.2f}%") print(f"数字:{digit_count},占比:{digit_percent:.2f}%") # 关闭文件 file.close() ``` 这两种方法的思路都是一样的,只是判断字符类别的方式不同。 最后,我回答你的第三个问题。以下是将 `test.txt` 文件所有小写字母转换为大写字母并保存到 `test_copy.txt` 文件的 Python 代码: ```python # 打开文件 file = open('test.txt', 'r') copy_file = open('test_copy.txt', 'w') # 将小写字母转换为大写字母并写入文件 for line in file: for char in line: if 'a' <= char <= 'z': char = chr(ord(char) - 32) # 将小写字母转换为大写字母 copy_file.write(char) # 关闭文件 file.close() copy_file.close() ``` 这段代码会逐行读取 `test.txt` 文件,将其所有小写字母转换为大写字母,并写入到 `test_copy.txt` 文件。 注意,我们使用了 `ord()` 函数将字符转换为 ASCII 码,并使用 `chr()` 函数将 ASCII 码转换为字符。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值