ما هي طريقة toUpperCase()؟
مثال
دعونا نلقي نظرة على مثال أساسي لتحويل سلسلة إلى ALL-CAPS باستخدام طريقة toUpperCase() في Java.public class UpperCase {
public static void main(String[] args) {
String myCountry = "pakistan";
System.out.println("My Country name is: " + myCountry);
// convert a string to uppercase
System.out.println("My Country name using toUpperCase() is: " + myCountry.toUpperCase() + "\n");
String paragraph = "Code Gym is an amazing place to start your java learning journey!";
System.out.println("Text paragraph: " + paragraph);
// convert a paragraph to uppercase
System.out.println("Text paragraph after using toUpperCase() method: " + paragraph.toUpperCase() + "\n");
char dummyChar = 'a';
System.out.println("dummyChar is: " + dummyChar);
// convert the primitive 'char' type to uppercase
System.out.println("dummyChar using toUpperCase() is: " + Character.toUpperCase(dummyChar));
}
}
انتاج |
اسم بلدي هو: باكستان اسم بلدي الذي يستخدم toUpperCase() هو: باكستان فقرة نصية: يعد Code Gym مكانًا رائعًا لبدء رحلة تعلم جافا الخاصة بك! فقرة نصية بعد استخدام طريقة toUpperCase(): CODE GYM هو مكان رائع لبدء رحلة تعلم Java الخاصة بك! dummyChar هو: dummyChar الذي يستخدم toUpperCase() هو: A
GO TO FULL VERSION