Day39--返回大寫字母的字串
使用String
類的toUpperCase()
方法
示例程式碼如下:
public class Main {
public static void main(String[] args) {
String str = "hello";
String upperCaseStr = str.toUpperCase();
System.out.println(upperCaseStr);
}
}
- 這種方法直接在原始字串物件上呼叫
toUpperCase()
,它會返回一個新的字串,新字串中的所有字元都是大寫形式,而原始字串不會被改變。