我無法將信息放入使用Javascript和分割的數組中。Javascript - 具有分割功能的陣列
var LigneTab= new Array(3,7); //4 Lines, 7 Items
var reg=new RegExp(" +", "g");
Ligne = ("55062 5453457.4676 236746.6682 472.4027 POA 2012-08-14 GM33P086"); //First Line
LigneTab[0]=Ligne.split(reg); //Split the line in 7 items and place it in line 0
UltraEdit.messageBox(LigneTab[0,4]]); // Debug msgbox from UltraEdit to show the item 4 'POA'
什麼是你的麻煩? –
'new Array(3,7)'創建一個數組,其值爲[3,7]。我不認爲這就是你想要的。 – zzzzBov
在JavaScript中,數組是動態的,所以你不必在之前設置大小。 – Jarry