in reply to
Removing line from a string
If it's always "Key" on the first line
$records = substr($records, 4);
Or up to the first newline
$records = substr($records, index($records, "\n")+1);
Comment on
Re: Removing line from a string
Select
or
Download
Code
In Section
Seekers of Perl Wisdom