Thanks for all your replies and comments!!! The solution Alex Satrapa came up with works perfectly!!
Converting email and web addresses to hyperlinks using BBEdit... "URL to HREF" Find: \b(([\w-]+://?|www[.])[^\s()<>]+(?:\([\w\d]+\)|([^[:punct:] \s]|/))) Replace: <a href="http://\1">\1</a> Replace: <a href="http://\1" target="_blank">\1</a> (add target="_blank") "Email to HREF" Find: ((?:[\w\-\.]+)@(?:(\[([0-9]{1,3}\.){3}[0-9]{1,3}\])|(([\w\-]+\.) +)([a-zA-Z]{2,4}))) Replace: <a href="mailto:\1">\1</a> -- You received this message because you are subscribed to the "BBEdit Talk" discussion group on Google Groups. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at <http://groups.google.com/group/bbedit?hl=en> If you have a feature request or would like to report a problem, please email "[email protected]" rather than posting to the group. Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>
