-
/*Java String to Upper Case example.This Java String to Upper Case example shows how to change the string to upper caseusing toUpperCase method of String class.*/
public class StringToUpperCaseExample
{
public static void main(String[] args)
{
String str = “string touppercase example”;
/** To change the case of string to upper case use,* public String toUpperCase() method of String class.**/
String strUpper = str.toUpperCase();
System.out.println(“Original String: “ + str);System.out.println(“String changed to upper case: “ + strUpper);}}
/*Output would beOriginal String: string touppercase exampleString changed to upper case: STRING TOUPPERCASE EXAMPLE*/
Friday, 13 April 2018
Popular Posts
-
Activity_main.xml File <? xml version= "1.0" encoding= "utf-8" ?> < LinearLayout xmlns: android = &qu...
-
Procedure Oriented Programming Language:- High level language such as COBOL , FORTRAN AND C is commonly known as procedure oriented progr...
-
Activity Main : <? xml version ="1.0" encoding ="utf-8" ?> < androidx.constraintlayout.widget.ConstraintLayout...
-
Build.gradle File:- implementation 'com.google.android.material:material:1.3.0' implementation 'com.squareup.retrofit2:retr...
-
Advantages of Object Oriented Programming Object oriented programming has several advantage to the programmer and user. Through inheri...
-
There are many programming languages, each corresponding to specific needs (formula calculus, character string processing, real-time, etc.)...
-
Build interactive, data-driven websites with the potent combination of open-source technologies and web standards, even if you have only ...
-
Pseudocode is a compact and informal high-level description of a computer programming algorithm. Pseudo-code typically omits details tha...
-
What is Python? → Python is an interpreted High level programming Language for General purpose programming. Python is created by Gui...
-
Introduction: In today's digital age, where typing on keyboards and tapping on screens has become the norm, there is something truly mag...
Categories
Android
(23)
AngularJS
(1)
Assembly Language
(2)
Books
(11)
C
(75)
C#
(12)
C++
(81)
Course
(3)
Data Science
(1)
Data Strucures
(4)
Downloads
(1)
Engineering
(13)
flutter
(1)
FPL
(17)
Hadoop
(1)
HTML&CSS
(40)
IS
(25)
Java
(89)
Leet Code
(4)
Pandas
(2)
PHP
(20)
Projects
(19)
Python
(435)
R
(69)
Selenium Webdriver
(2)
Software
(14)
SQL
(27)
ReplyDeletenice article for beginners.thank you.
javacodegeeks
welookups java