2012年2月23日 星期四

【基本教學】分割字串 - Split


複製程式碼貼到JavaScript裡存檔,拖曳到攝影機上執行
仔細觀察其輸出的結果
var combined:String = "one,two,three";
var words:String[] = combined.Split(","[0]);

function Start(){
    print (words[2]);
}

0 ♥:

張貼留言