http://www.perlmonks.org?node_id=656506


in reply to Another question about the split function

Remove the leading spaces before doing the split.

$statusLine =~ s/^\s+//;
90% of every Perl application is already written.
dragonchild