in reply to cut a string in a string

I think a better solution than 'split' is using regex. Something like this (untested):
$line =~ m/^\S+\.(.*)=\S+$/;

Igor 'izut' Sutton
your code, your rules.