in reply to how to express $temp =~ s/.*?from://; in perl 4
$temp = substr ( $temp, index ( $temp, 'from:' ) + 5 ) if $temp =~ /from:/; [download]
Note that, since I don't have Perl 4 installed anywhere, the code above is untested under Perl 4.
*Woof*