As I understand it everything entered in square brackets(a character class) is literal. In parentheses it is read as a metacharacter. <br><br><div class="gmail_quote">On Fri, Mar 27, 2009 at 2:48 AM, Even André Fiskvik <span dir="ltr">&lt;<a href="mailto:grevenx@me.com">grevenx@me.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;">Imho you always have to escape the asterisk character if that is what<br>
you want,<br>
so &quot;[*]&quot; is bad. You would want &quot;[\*]&quot;.<br>
<br>
See <a href="http://www.regular-expressions.info/characters.html" target="_blank">http://www.regular-expressions.info/characters.html</a> for tips.<br>
<br>
<br>
Best regards,<br>
<font color="#888888"><br>
Even André<br>
</font><div><div></div><div class="h5"><br>
On 27. mars. 2009, at 05.05, Robert Clayton wrote:<br>
<br>
&gt; All,<br>
&gt;<br>
&gt; Ok I know it must be me but...<br>
&gt;<br>
&gt; In the Lua regex portion of session:playAndGetDigits what regex<br>
&gt; would I use to match either a numeric entry, or an asterisk. It<br>
&gt; seems when I attempt to define an asterisk as a character rather<br>
&gt; than a metacharacter the regex script is evaluated other than I<br>
&gt; would assume.<br>
&gt; The error code presents \* as a single * and [*] other than a<br>
&gt; character, leading to the hint that there is no preceding character<br>
&gt; to multiply.<br>
&gt;<br>
&gt; I have at most 15 minutes of proficiency in regular expressions,<br>
&gt; but, are not \* or [*] equivalent to an asterisk character, rather<br>
&gt; than a metacharacter?<br>
&gt;<br>
&gt; Also it seems that the playAndGetDigits evaluates when either the<br>
&gt; maximum number of characters is entered or the terminator is<br>
&gt; pressed. Is there any way to evaluate the regex on each input and<br>
&gt; therefore dynamically return after an acceptable entry? As in the<br>
&gt; previous example a numeric string and a single asterisk are,<br>
&gt; usually, different lengths and if an asterisk was used for, say,<br>
&gt; abort, entering an asterisk followed by a terminator would seem<br>
&gt; incorrect.<br>
&gt;<br>
&gt; Bob<br>
&gt;<br>
&gt;<br>
</div></div><div><div></div><div class="h5">&gt; _______________________________________________<br>
&gt; Freeswitch-dev mailing list<br>
&gt; <a href="mailto:Freeswitch-dev@lists.freeswitch.org">Freeswitch-dev@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br>
<br>
_______________________________________________<br>
Freeswitch-dev mailing list<br>
<a href="mailto:Freeswitch-dev@lists.freeswitch.org">Freeswitch-dev@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br>