[Java 教學範例拷貝]- String 類別(1/3)
剛才找資料時發現一個的Java 教學網站,趕快發揮(C/P)的長才將它備份來,有需要的同好,歡迎來(C/P)一下^^。
拷貝來源:
http://openhome.cc/Gossip/JavaGossip-V1/
http://openhome.cc/Gossip/JavaGossip-V1/StringClass.htm
public class UseString { public static void main(String[] args) { String text = "hello"; System.out.println("字串內容: " + text); System.out.println("字串長度: " + text.length()); System.out.println("等於hello? " + text.equals("hello")); System.out.println("轉為大寫: " + text.toUpperCase()); System.out.println("轉為小寫: " + text.toLowerCase()); } }
|
沒有留言:
張貼留言