Textmate Regex Find Replace Help - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T07:19:01Zhttp://stackoverflow.com/feeds/question/401067http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/401067/textmate-regex-find-replace-help1Textmate Regex Find Replace HelpMichael Lasky2008-12-30T18:37:23Z2008-12-30T18:49:30Z
<p>Hi,
I've got a project I'm working on converting some legacy perl cgi forms to PHP. A lot of this requires finding / replacing information. In one such case, I have lines like this in the perl script:</p>
<pre><code><INPUT type="radio" name="trade" value="1" $checked{trade}->{1}>
</code></pre>
<p>which needs to read:</p>
<pre><code><INPUT type="radio" name="trade" value="1" <?php echo checked('trade', 1); ?>>
</code></pre>
<p>Another example to show some variation in how these tags might show up in the perl/html:</p>
<pre><code><INPUT type="radio" name="loantype" value="new" $checked{loantype}->{new}>
<INPUT type="radio" name="loantype" value="new" $checked{'loantype'}->{new}>
<INPUT type="radio" name="loantype" value="new" $checked{'loantype'}->{'new'}>
<INPUT type="radio" name="loantype" value="new" $checked{loantype}->{'new'}>
</code></pre>
<p>As you can see, the quotes can be about anywhere, but that's not my problem. I decided to write a find / replace regex in textmate to make my life a bit easier. My Regex looks like:</p>
<pre><code>Find: \$checked\{'?([^']+)'?\}->\{'?([^']+)'?\}
Replace: <?php echo checked('$1', '$2'); ?>
</code></pre>
<p>This worked fine in the first file I did it with, but for some reason in the current file the Regex has become really greedy, matching many lines. it'll match the begininng (\$checked...) and then match up to the last time the character '}' appears. I've tried a few variations to make it a bit less greedy including:</p>
<pre><code> ^(.*)\$checked\{'?([^']+)'?\}->\{'?([^']+)'?\}(.*)$
</code></pre>
<p>But even that seems to match multiple lines. I assumed the ^ at the beginning would only match the beginning of a line, and the $ at the end would only match the end... constraining my match to 1 line... but it doesn't it seems. </p>
<p>/me fails at regex</p>
<p>Thanks for any help,
Mike</p>
http://stackoverflow.com/questions/401067/textmate-regex-find-replace-help/401088#4010882Answer by Gordon Wilson for Textmate Regex Find Replace HelpGordon Wilson2008-12-30T18:49:30Z2008-12-30T18:49:30Z<p>Try this:</p>
<pre><code>^(.*?)\$checked\{'?([^']+?)'?\}->\{'?([^']+?)'?\}(.*?)$
</code></pre>
<p>The <code>?</code> after <code>*</code> and <code>+</code> make them "non-greedy".</p>