Java 将英文字母的大小写转化
时间: 2023-11-21 11:03:52 浏览: 115
java实现大小写字母转化
5星 · 资源好评率100%
Java 中将英文字母的大小写转化可以使用 String 类中的 toUpperCase() 和 toLowerCase() 方法。
例如,将字符串 str 中的所有字母转换为大写:
```
String str = "Hello World";
String strUpperCase = str.toUpperCase();
System.out.println(strUpperCase); // 输出:HELLO WORLD
```
将字符串 str 中的所有字母转换为小写:
```
String str = "Hello World";
String strLowerCase = str.toLowerCase();
System.out.println(strLowerCase); // 输出:hello world
```
如果只需要将字符串中的某些字母转化为大小写,可以使用 Character 类中的 toUpperCase() 和 toLowerCase() 方法。
例如,将字符串 str 中第一个字母转换为大写:
```
String str = "hello world";
char firstChar = str.charAt(0);
String strNew = Character.toUpperCase(firstChar) + str.substring(1);
System.out.println(strNew); // 输出:Hello world
```
将字符串 str 中第一个字母转换为小写:
```
String str = "Hello World";
char firstChar = str.charAt(0);
String strNew = Character.toLowerCase(firstChar) + str.substring(1);
System.out.println(strNew); // 输出:hello World
```
阅读全文