<div class="gmail_quote">On Fri, Jun 3, 2011 at 23:36, Jay McCarthy <span dir="ltr">&lt;<a href="mailto:jay.mccarthy@gmail.com">jay.mccarthy@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

2011/6/3 Rodolfo Carvalho &lt;<a href="mailto:rhcarvalho@gmail.com">rhcarvalho@gmail.com</a>&gt;:<br>
<div class="im">&gt; Hello,<br>
&gt; I&#39;m curious about 2 design decisions made:<br>
&gt; 1) Why do I have to escape things like &quot;\d{2}&quot; -&gt; &quot;\\d{2}&quot;?<br>
<br>
</div>Because &quot;\d&quot; is the same as &quot;d&quot;, because you&#39;re escaping the character<br>
#\d. But, the syntax for the regular expression is #\backslash #\d, so<br>
you need to get a backslash in there, which is otherwise a control<br>
character, so you need to escape it.<br></blockquote><div><br></div><div><br></div><div>Well, this I understand - &quot;what it is doing there&quot;.</div><div>However, it seems to me that matching a digit is more interesting than matching a backslash followed by a #\d (similar to the others, \w, \s, ...)</div>

<div>When I need to match a backslash I can always escape it.</div><div><br></div><div>So, for me is more &quot;natural&quot; to have &quot;\d&quot; match a digit and &quot;\\d&quot; match a backslash-d.</div><div><br></div>

<div>What motivates choosing the way Racket does it?</div><div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im"><br>
&gt;<br>
&gt; 2) Why there are two kinds of regexps, #rx and #px?<br>
&gt; #rx&quot;\\d{2}&quot; doesn&#39;t work because the curly braces are part of just pregexps<br>
&gt; grammar...<br>
<br>
</div>#px is more powerful than #rx, but that power costs. Most regexps can<br>
get by with what #rx has.<br></blockquote><div><br></div><div><br></div><div>Ah! Now I can think of #px&quot;...&quot; as power-regexp... before this &quot;p&quot; was a mystery. Thanks.</div><div><br></div><div>How high is the cost? Performance x pragmatism... (btw I noticed something similar with #lang racket vs #lang racket/base)</div>

<div><br></div><div> </div></div>