สอนเขียนโค้ดภาษา Java เปลี่ยนตัวพิมพ์เล็กให้เป็นตัวพิมพ์ใหญ่ ด้วยคำสั่ง toUpperCase โดยคำสั่งนี้จะเปลี่ยนข้อความที่ต้องการให้เป็นตัวพิมพ์ใหญ่ทั้งหมด โดยตัวอย่างจะแนะนำวิธีการใช้คำสั่ง toUpperCase สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Java ตัวพิมพ์ใหญ่ ด้วยคำสั่ง toUpperCase
class Test {
public static void main(String args[]){
String s = "devdit";
System.out.println( s );
System.out.print( "ใช้ toUpperCase เปลี่ยนเป็นตัวพิมพ์ใหญ่ "+s.toUpperCase() );
}
}
ผลลัพธ์
devdit
ใช้ toUpperCase เปลี่ยนเป็นตัวพิมพ์ใหญ่ DEVDIT