I have been using regexp-match<div>specifically -- </div><div>(regexp-match &quot;(1)\1&quot; &quot;112&quot;)</div><div>I&#39;m 100% positive I&#39;m missing some dorky character that will make this work.<br clear="all">-Justin<br>

<br><br><div class="gmail_quote">On Fri, Oct 29, 2010 at 2:33 PM, Carl Eastlund <span dir="ltr">&lt;<a href="mailto:cce@ccs.neu.edu">cce@ccs.neu.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
I&#39;m not sure I know what problem you&#39;re running into, but if you use<br>
Perl regular expression be sure to use (pregexp ...) to compile them<br>
or #px&quot;...&quot; to write them.  Otherwise you get a slightly different<br>
regular expression language (compatible with Unix utilities like<br>
egrep, rather than with Perl).  If you&#39;re using those regular<br>
expressions, they don&#39;t have backreferences.<br>
<font color="#888888"><br>
Carl Eastlund<br>
</font><div><div></div><div class="h5"><br>
On Fri, Oct 29, 2010 at 5:29 PM, Justin Phillips<br>
&lt;<a href="mailto:jjustinphillipss@gmail.com">jjustinphillipss@gmail.com</a>&gt; wrote:<br>
&gt; I&#39;m trying to write a small regex that would return any repeating pattern in<br>
&gt; a string e.g. (&quot;ababcdcdababcdcd&quot; would return &quot;ab&quot; &quot;cd&quot; abab&quot; &quot;cdcd&quot;<br>
&gt; &quot;ababcdcd&quot;)<br>
&gt; I&#39;m having trouble using the backreferencing. I see under section 3.7.2 of<br>
&gt; the guide (and also some Perl docs I&#39;ve checked out) that I should be able<br>
&gt; to write a simple regex &quot;(1)\1&quot; which would return true for the data &quot;113&quot;<br>
&gt; but Racket says I&#39;m wrong. Any help would be greatly appreciated.<br>
&gt; -Justin<br>
</div></div></blockquote></div><br></div>