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'
new Array(3, 7)creates an array with the values[3, 7]. I don't think that's what you want.LigneTab[0,4]is invalid, and should probably beLigneTab[0][4].new Array(3,7)does not make an array with4 Lines, 7 Items.