<br><br><div class="gmail_quote">On Sat, Sep 26, 2009 at 8:45 PM, Seven Du <span dir="ltr">&lt;<a href="mailto:dujinfang@gmail.com">dujinfang@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi, is this a bug?<br><br>freeswitch@internal&gt; regex &quot;10&quot;|&quot;09|10&quot;<br>false<br>freeswitch@internal&gt; regex &quot;10&quot;|&quot;10&quot;<br>true<br>freeswitch@internal&gt; regex &quot;10&quot;|&quot;(09|10)&quot;<br>

false<br>freeswitch@internal&gt; 2009-09-27 11:47:00.815355 [ERR] switch_regex.c:101 COMPILE ERROR: 4 [missing )][&quot;(09]<br><br><br>the first one should be true?<br>
<br>_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></blockquote></div><br>Try adding a backslash in front of the pipe so that the regex command does not view the pipe as a data delimiter:<br>freeswitch@internal&gt; regex &quot;10&quot;|&quot;09\|10&quot;<br>true<br><br>
Let us know if you get it working for your needs.<br>-MC<br>