On Fri, December 6, 2013 1:25 pm, Marcio Humpris wrote: > how can I do something that catches in subject of an email "225 > spreadsheets for download" and variations? such as "xx to xxx > spreadshets",
header DL_SPREADSHEETS /^\d+ spreadsheets for download$/ Omit "for download" if you want. Omit the ^ and $ boundary characters if you want to allow text before and after. > any recommendations of easy tool to help build regexes also would be nice. See the link in the previous email. If you read all the tutorial pages you should be well on your way to figuring out how to write regexps properly. You can easily test your regexps at http://www.regexpal.com --- Amir