I have trouble to put information in a array with Javascript and Split.
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'
Considering the code you posted, I don’t see why you need a two-dimensional array. But if you really need one, you are trying here is one of the possible ways to create it and access it: