Tutorial Gateway

  • C
  • C#
  • Java
  • Python
  • SQL
  • MySQL
  • Js
  • BI Tools
    • Informatica
    • Talend
    • Tableau
    • Power BI
    • SSIS
    • SSRS
    • SSAS
    • MDX
    • R Tutorial
    • Alteryx
    • QlikView
  • More
    • C Programs
    • C++ Programs
    • Go Programs
    • Python Programs
    • Java Programs

Java toUpperCase Method

by suresh

The Java toUpperCase Method is one of the Java String Methods, which is useful to convert the given string into Uppercase letters. In this article, we will show how to use String toUpperCase in Java Programming language with example. The syntax of the string.toUpperCase in Java Programming language is as shown below.

Java toUpperCase Method syntax

Java provides two different methods to convert the specified string into Uppercase letters. The following method will not accept any parameters and convert all the characters in a string to uppercase using the rule of the default locale.

public String toUpperCase(); // It will return String 

//In order to use in program
String_Object.toUpperCase()

The following function will accept Locale value as the parameter and convert all the characters in a string to uppercase using the user-specified locale variable.

public String toUpperCase(Locale locale); // It will return String 

//In order to use in program
String_Object.toUpperCase(Locale locale)
  • String_Object: Please specify the valid String Object.
  • locale: Please specify the Locale you want to use while converting the String_Object characters to Uppercase. For example, English, Turkish, Latin, etc.

Java to UpperCase Method Example

The Java string toUpperCase method converts the characters within a string to uppercase. This program will help to understand the string toupperCase method.

package StringFunctions;

public class ToUpperCaseMethod {
 public static void main(String[] args) {
 String str = "Java ProgramminG Tutorial at Tutorial GateWay";
 
 String str1 = str.toUpperCase();
 String str2 = "Java Programming Language".toUpperCase();
 String str3 = "PRogramming WOrld".toUpperCase();
 String str4 = "TrY tO ReAd ThIs SenTEnCe".toUpperCase();
 
 System.out.println( "New Uppercase String = " + str1);
 System.out.println( "New Uppercase String = " + str2);
 System.out.println( "New Uppercase String = " + str3);
 System.out.println( "New Uppercase String = " + str4);
 }
}
Java toUpperCase Method 1

The following statements will convert the previously declared String into uppercase and assign it to Str1. Next, we used the toUpperCase String Method directly on string data.

String str1 = str.toUpperCase();
String str2 = "Java Programming Language".toUpperCase();
String str3 = "PRogramming WOrld".toUpperCase();
String str4 = "TrY tO ReAd ThIs SenTEnCe".toUpperCase();

The following Java System.out.println statements will print the output.

System.out.println( "New Uppercase String = " + str1);
System.out.println( "New Uppercase String = " + str2);
System.out.println( "New Uppercase String = " + str3);
System.out.println( "New Uppercase String = " + str4);

Placed Under: Java

  • SQL DML, DDL, DCL & TCL Cmds
  • SQL NOT EXISTS Operator
  • SQL UPDATE from SELECT
  • SQL AFTER UPDATE Triggers
  • SQL Get Column Names in Table
  • SQL IF ELSE
  • SQL ACID Properties
  • SQL FOR XML PATH
  • Java Two Dimensional Array
  • Java Perfect Number Program
  • Java Count Digits in a Number
  • C Compare Two Strings Program
  • C Print Prime Numbers 1 to 100
  • C program to Reverse a String
  • C Palindrome Number Program
  • C Program for Palindrome String
  • C Remove Duplicate String Chars
  • C Square of a Number Program
  • C Sum and Average of N Number
  • Python Fibonacci Series program
  • Python Area Of Circle Program
  • Python Prime Numbers 1 to 100
  • Python Program for Leap Year
  • Tableau Rank Calculation
  • Tableau Google Maps usage
  • Power BI Format Dates
  • Power BI Top 10 Filters
  • Power BI – Create Hierarchy
  • Power BI DAX Math Functions
  • Learn SSIS in 28 Days
  • SSIS Transformations
  • SSIS Incremental Load
  • SSRS Drill Through Reports
  • SSRS Drill Down Reports
  • R Programming Tutorial

Copyright © 2021 · All Rights Reserved by Suresh

About Us | Contact Us | Privacy Policy