I've decided to give up on it, spent too much time trying to resolve it already (and it took less than an hour to do it with Classes without having any bugs). But, to answer your questions...
Those aren't spaces, those are tabs (I'm getting a tab delimited text from the Progress DB). If you're not seeing Tabs, it's because this forum is converting the strings.
The double-talk on $machine is because there's a \n at the end of the line. If you look in the code I posted, you'll see there's an extra line drop after the P12.34AB and before the closing of the array, the closing parenthesis.
But nothing of all that changes the fact that
$machineSAVs[$sav] = $sav;
-should- return
Array
(
[b123456] => B123456
)
but is instead returning
Array
(
[0] => B123456
)
I mean, the $sav is $sav for both key and value, it works great in the value slot, but comes up a 0 in the key slot... o.O Even if $sav had all sorts of garble in it, it should work as a key if it's working as a value (after all, you PHP even has a flip function that changes all keys to values and visa versa.... It just makes no sense at all.