It really depends upon where you are beginning.
1. Do you know how to read in a text file?
2. How are your areas marked as different (delimiters) and do you know how to parse the text file?
1. example:
open IN, "+<$file" || die "Can not open $file";
while (<IN>)
{
$readINtemp = $_;
$messagein .= $readINtemp;
}
close IN;
This will read in your file and assign it to $mesasgein
2. You will have to know what your text file is delimiting on to do a substr or a split on it to get your values. If you go to the Tutorial section and then click on the link marked String Matching it should help you out.
I'm a 'newby' as well, but I wish you luck and hope I helped.
- Mission"Heck I don't know how to do it either, but do you think that's going to stop me?!!"