regexp:gsub("ab:de", ":", "\\&").<br><br>& replaces the match with the substring of the match, so it was just replacing<br>c with c<br><br>regexp is deprecated though, and will probably be taken out the release after <br>
the one next week.<br><br><div class="gmail_quote">2009/4/18 Gordon Guthrie <span dir="ltr"><<a href="mailto:gordon@hypernumbers.com">gordon@hypernumbers.com</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Folks<div><br></div><div>This looks like a bug to me, but after many years regexp still gives me the creeps :(</div><div><br></div><div>> regexp:gsub("abcde", "c", "x").</div><div>{ok, "abxde", 1}</div>

<div><br></div><div>One substitution, new string, tickety-boo!</div><div><br></div><div>> regexp:gsub("ab:de", ":", "&").</div><div>{ok, "ab:de", 1}</div><div><br></div><div>

One substitution, but the old string, erk?</div><div><br></div><font color="#888888"><div>Gordon</div>
</font><br>_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://www.erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://www.erlang.org/mailman/listinfo/erlang-questions</a><br></blockquote></div><br>