I think you are over-analyzing it. How hard can it be?

put the file into an array as Bryce demonstrated and then Split() each line into elements on the spaces since you don't need them anyway. Remove the resultant empty array elements with the ArrayPack() UDF, and Bob's your uncle.

Code:
Break On
$Array =
"T1 7/0:",
" DS0's Active: 22",
" DS0's Active High Water Mark: 23",
" TimeSlot Type TotalCalls TotalDuration",
" 1 pri 157 00:08:48",
" 2 pri 129 01:06:24",
" 3 pri 115 00:00:51",
" 4 pri 124 00:02:57",
" 5 pri 123 00:28:56",
" 6 pri 126 00:08:48",
" 7 pri 117 00:06:52",
" 8 pri 97 00:00:21",
" 9 pri 157 00:00:44",
" 10 pri 111 00:10:56",
" 11 pri 112 00:09:12",
" 12 pri 120 00:05:03",
" 13 pri 118 00:19:17",
" 14 pri 107 00:02:30",
" 15 pri 101 00:00:37",
" 16 pri 124 00:04:26",
" 17 pri 115 00:06:31",
" 18 pri 108 00:34:02",
" 19 pri 122 00:23:41",
" 20 pri 120 00:02:43",
" 21 pri 111 00:07:55",
" 22 pri 145 00:06:46",
" 23 pri 101 00:09:59",
" 24 pri-sig 0 00:00:00"

For each $Line in $Array
$Line ?
For each $Element in ArrayPack(Split($Line,' '))
'['+$Element+']' ?
Next
Next



THe results are as follows:
Code:
T1 7/0:
[T1]
[7/0:]
DS0's Active: 22
[DS0's]
[Active:]
[22]
DS0's Active High Water Mark: 23
[DS0's]
[Active]
[High]
[Water]
[Mark:]
[23]
TimeSlot Type TotalCalls TotalDuration
[TimeSlot]
[Type]
[TotalCalls]
[TotalDuration]
1 pri 157 00:08:48
[1]
[pri]
[157]
[00:08:48]
2 pri 129 01:06:24
[2]
[pri]
[129]
[01:06:24]
3 pri 115 00:00:51
[3]
[pri]
[115]
[00:00:51]
4 pri 124 00:02:57
[4]
[pri]
[124]
[00:02:57]
5 pri 123 00:28:56
[5]
[pri]
[123]
[00:28:56]
6 pri 126 00:08:48
[6]
[pri]
[126]
[00:08:48]
7 pri 117 00:06:52
[7]
[pri]
[117]
[00:06:52]
8 pri 97 00:00:21
[8]
[pri]
[97]
[00:00:21]
9 pri 157 00:00:44
[9]
[pri]
[157]
[00:00:44]
10 pri 111 00:10:56
[10]
[pri]
[111]
[00:10:56]
11 pri 112 00:09:12
[11]
[pri]
[112]
[00:09:12]
12 pri 120 00:05:03
[12]
[pri]
[120]
[00:05:03]
13 pri 118 00:19:17
[13]
[pri]
[118]
[00:19:17]
14 pri 107 00:02:30
[14]
[pri]
[107]
[00:02:30]
15 pri 101 00:00:37
[15]
[pri]
[101]
[00:00:37]
16 pri 124 00:04:26
[16]
[pri]
[124]
[00:04:26]
17 pri 115 00:06:31
[17]
[pri]
[115]
[00:06:31]
18 pri 108 00:34:02
[18]
[pri]
[108]
[00:34:02]
19 pri 122 00:23:41
[19]
[pri]
[122]
[00:23:41]
20 pri 120 00:02:43
[20]
[pri]
[120]
[00:02:43]
21 pri 111 00:07:55
[21]
[pri]
[111]
[00:07:55]
22 pri 145 00:06:46
[22]
[pri]
[145]
[00:06:46]
23 pri 101 00:09:59
[23]
[pri]
[101]
[00:09:59]
24 pri-sig 0 00:00:00
[24]
[pri-sig]
[0]
[00:00:00]

C:\KiXScripts>

_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.