[Java 教學範例拷貝]- 分離字串(1/2)
剛才找資料時發現一個的Java 教學網站,趕快發揮(C/P)的長才將它備份來,有需要的同好,歡迎來(C/P)一下^^。
拷貝來源:
http://openhome.cc/Gossip/JavaGossip-V1/
http://openhome.cc/Gossip/JavaGossip-V1/SplitString.htm
public class StringSplit { public static void main(String args[]) { String strOfReaded1 = "cater 64/5/26 0939002302 5433343"; String[] tokens = strOfReaded1.split("\t"); for(String token : tokens) { System.out.print(token + "\t"); } System.out.println(); } }
|
沒有留言:
張貼留言