對不起但我對Unity編碼非常新穎。我有一個NX2陣列,如下所示:Unity3d中的簡單C#或unityscript編碼。需要從nx2數組中刪除所有不同的單詞
var questans = new String[10, 10];
questans[0,0]="Hey How's it going?";
questans[0,1]="You know me Just chillin'";
questans[1,0]="Hello there friend";
questans[1,1]="Well met to you too!";
questans[2,0]="I like chocolate pudding";
questans[2,1]="Good for you";
我需要基本寫一個for循環,可以在這陣去,給我一個包含所有不同單詞的數組。因此,輸出應該是:[嘿,怎麼樣,它,去.....]
我寫了一個函數來做到這一點,但我無法拆分字符串,因爲Unity給我的代碼一些奇怪的錯誤與string.split:
我曾寫過:
var ff:String [] // Temporary variable. I'm just testing for the first string questans[0,0]
ff=quesans[0,0].Split(" "[0]);
但是,它給了我System.String []作爲輸出......即使通過FF迭代。
有人可以請我給我一個方法,我可能會遍及整個數組(我可以遍歷它)並獲取每個不同的單詞而無需手動爲它寫一個for循環嗎?
謝謝!
哦不,我的意思是..我知道如何循環..感謝您的幫助! –