RegEx to find replace in TextMate


/ Published in: Regular Expression
Save to your folder(s)

search for anything in-between two 's and then replace the found string into the PHP if/else staement. $1 is wher TextMate stores the found string. (see http://screenflicker.com/mike/code/textmate-regex-replace/)


Copy this code and paste it in your HTML
  1. Search Term:
  2. <TAG>(.*)</TAG>
  3.  
  4. Replace Term:
  5. \$$1 = \$_POST['$1'];
  6. if (\$$1) echo "<tr><td>$1</td><td>\$$1</td></tr>";
  7. else echo "";

URL: http://screenflicker.com/mike/code/textmate-regex-replace/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.