No need for regular expressions. Simply match any string where the first seven characters are "mailto:".
If you insist on using regular expressions, the expression would be "mailto:.*". If you only want to keep what is after the "mailto:", it would be "mailto:(.*)"
Bryan Oakley
2010-02-14 13:41:35