在 Java 中转换为大写。
此方法有两个变体。第一个变体将此 String 中的所有字符转换为大写,使用给定区域设置的规则。这等同于调用 toUpperCase(Locale.getDefault())。
第二个变体将区域设置作为参数,在转换为大写时使用。
示例
import java.io.*; public class Test { public static void main(String args[]) { String Str = new String("Welcome to Tutorialspoint.com"); System.out.print("Return Value :"); System.out.println(Str.toUpperCase()); } }
输出
Return Value :WELCOME TO TUTORIALSPOINT.COM
广告