I'm doing pattern matching to an email message file, I want to extract the senders from the file so I'm doing something like this:
if ($line =~ /^From:\b/){whatever}
can anyone tell me what the problem might be? is it the colon that is causing problems?