<div class="gmail_quote">my use case is for substutition,  and so need to work with regex-replace, as its third argument, I don&#39;t think the grouping operator works in that case...  some named sub-expression could do it I believe, I can&#39;t find any information about Racket supporting this, am I wrong? <div>
<div></div><div class="h5"><br>
<br><div class="gmail_quote">2011/6/22 Matthew Flatt <span dir="ltr">&lt;<a href="mailto:mflatt@cs.utah.edu" target="_blank">mflatt@cs.utah.edu</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

You could wrap the &quot;\1&quot; with the grouping operator &quot;(?:...)&quot;:<br>
<br>
 &gt; (regexp-match #px&quot;(.*)\\1001&quot; &quot;abcabc001&quot;)<br>
 bad pregexp string: backreference number is larger than the<br>
 highest-numbered cluster<br>
 &gt; (regexp-match #px&quot;(.*)(?:\\1)001&quot; &quot;abcabc001&quot;)<br>
 &#39;(&quot;abcabc001&quot; &quot;abc&quot;)<br>
<div><div></div><div><br>
At Wed, 22 Jun 2011 09:52:09 -0400, Louis-Philippe wrote:<br>
&gt; Hi all,<br>
&gt;<br>
&gt;    I have a small question about regexp-match:<br>
&gt;<br>
&gt;<br>
&gt;    when I want to insert a sub-expression followed by a number what should I<br>
&gt; write?<br>
&gt;<br>
&gt; like &quot;\1001&quot; to insert sub-expression 1 followed by 001<br>
&gt;<br>
&gt;    right now tries to insert sub-expression 1001...  is there a way to<br>
&gt; escape this?<br>
&gt;<br>
&gt;<br>
&gt; thanks!<br>
&gt;<br>
&gt;<br>
&gt; L-P<br>
&gt;<br>
&gt;<br>
&gt; p.s. I double posted on the IRC...  so the first good response I get I will<br>
&gt; re-post, thanks!<br>
</div></div>&gt; _________________________________________________<br>
&gt;   For list-related administrative tasks:<br>
&gt;   <a href="http://lists.racket-lang.org/listinfo/users" target="_blank">http://lists.racket-lang.org/listinfo/users</a><br>
</blockquote></div><br>
</div></div></div><br>