Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a gmail address with a lot of data that multiple people have sent me with similar subjects:

(for example: they all start with the string "123")

Each e-mail contains a table that looks like this

#, user, arbitrary number

  1. user1 5
  2. user2 3
  3. user3 4 etc.

How would I create a file that filters for all of these messages and then proceeds to take the information from the table from each of these e-mails?

Would a mail client make it easier? What sort of technology/ coding language should I use?

I'm not really sure what to look into or how to start this.

share|improve this question

1 Answer

You can use modules of Perl for this task. Look at How can I read messages in a Gmail account from Perl? to know how to read messages from gmail account through POP client. Once you have read them, the messages can be easily processed with the regular expressions in perl. Ex:

if ($msg_subject =~ /^123.*/s) {
     # Add your logic for such mails
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.