[Java] 分離字串 String.split()

  • 0
在Java中想要分割字串,比如說command line輸入的參數一個個取出來
也可以使用String的split()函式來完成

//欲切割的字串
String splitString = "This is a split example";
//使用" "(空白)進行切割
String[] cmds = splitString.split(" ");
for(String cmd:cmds){
    System.out.println(cmd);
}

執行結果
This
is
a
split
example

參考: http://caterpillar.onlyfun.net/Gossip/JavaGossip-V1/SplitString.htm

沒有留言 :

張貼留言