I have a .txt file with many emails including headers. I'm just wondering how I would use perl to find out how many occurrences of the same email address are found in this text file? Would it involve regular expressions?
|
|
How about this script:
Save it to a file such as
It will print the total number of email addresses found and count per email address. |
|||||||||||||
|
|
You might find cpan: Email::Find useful. You could store the addresses you find in a hash table with email as the key and counter as value. You should be able to do that with the callback. Can you get started with this? |
|||||||
|
|
If you want to find all email addresses, I recommend trying a module rather than writing your own regex. Correctly matching all email addresses gets quite complicated. However, if you simply want to search for a given email address, you can accomplish this with a fairly simple regex:
Note that this requires the email address to be separated from any other content by whitespace. A couple of notes:
|
|||
|
|
