Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. result = re.search('(.*) On (.*), (.*),(.*) at (.*)', m['snippet'])
  2.  
  3. result.group(1): RELEVANT MESSAGE On Thu, Apr 25, 2019 at 10:34 AM Some Name <some@email.com> wrote: QUOTED MESSAGE
  4. result.group(2): On Thu, Apr 25, 2019 at 10:33 AM <some_other@email.com> wrote: PREVIOUS QUOTED MESSAGE
  5.  
  6. result.group(1): RELEVANT MESSAGE
  7. result.group(2): On Thu, Apr 25, 2019 at 10:34 AM Some Name <some@email.com> wrote: QUOTED MESSAGE On Thu, Apr 25, 2019 at 10:33 AM <some_other@email.com> wrote: PREVIOUS QUOTED MESSAGE
  8.  
  9. result.group(1): RELEVANT MESSAGE
  10. result.group(2): On Thu, Apr 25, 2019 at 10:34 AM Some Name <some@email.com> wrote: QUOTED MESSAGE
  11. result.group(3): On Thu, Apr 25, 2019 at 10:33 AM <some_other@email.com> wrote: PREVIOUS QUOTED MESSAGE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement