<br><div class="gmail_quote">On Mon, Dec 19, 2011 at 2:56 AM, Elliott Vogel <span dir="ltr">&lt;<a href="mailto:elliott@zoogmedia.com">elliott@zoogmedia.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">






<div link="blue" vlink="purple" lang="EN-US">
<div>
<p class="MsoNormal">I was wondering if anyone has a regex expression that works to return just digest? I have some clients sending requests formatted to +1 (555) 555-5555, 555-555-5555, 555.555.5555 which aren’t be processed  by our dial plan because we are
 expecting all numbers (5555555555) <u></u><u></u></p>
</div>
</div>

<br></blockquote><div><br></div></div>How about this?<br><br>^\+1\s+\((\d{3})\)\s(\d{3})-(\d{4})$|^(\d{3})-(\d{3})-(\d{4})$|^(\d{3})\.(\d{3})\.(\d{4})$<br><br>$1, $2 and $3 should give you the full number.<br><br>Regards,<br>
<br>Ryan<br>