當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java String toUpperCase()用法及代碼示例


字符串 toUpperCase() 方法

toUpperCase() 方法是一個String 類方法,用於將給定的字符串轉換為大寫。

用法:

    String String_object.toUpperCase();

這裏,String_object是一個 String 對象,我們必須將其轉換為大寫。該方法不改變字符串;它返回大寫轉換後的字符串。

例:

    Input:
    str = "Welcome at IncludeHelp!"
    Function call:
    ans = str.toUpperCase()

    Output:
    ans = "WELCOME AT INCLUDEHELP!"

碼:

public class Main
{
    public static void main(String[] args) {
		String str = "Welcome at IncludeHelp!";
		String ans = str.toUpperCase();
		System.out.println("str = " + str);
		System.out.println("ans = " + ans);		
    }
}

輸出

str = Welcome at IncludeHelp!
ans = WELCOME AT INCLUDEHELP!


相關用法


注:本文由純淨天空篩選整理自 Java String toUpperCase() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。