#include <file.au3>
#include <array.au3>
; get file name
$saFile = FileOpenDialog( "Select file with computer names", @WorkingDir & "\", "All (*.*)", 1 )
If @error Then
MsgBox( 0, "Error","No file selected" )
Exit
EndIf
Dim $aRecords
If Not _FileReadToArray($saFile,$aRecords) Then
MsgBox(4096,"Error", " Error reading log to Array error:" & @error)
Exit
EndIf
Dim $aArray[$aRecords[0]][3]
For $i = 1 To $aRecords[0]
$aA1 = StringSplit($aRecords[$i], ' ', 1) ; три пробела
For $j = 1 To 3
$aArray[$i-1][$j-1] = StringStripWS($aA1[$j], 1+2)
Next
Next
_ArrayDisplay($aArray)