What I am doing is replacing in a large program all $_REQUEST['var'] and mysql_escape_string($_REQUEST['var']) with either the 1st or 2nd line below the dotted line.
Now, I have figure out this much of the regular expression but I would like to make it one more step simpler. Instead of having to run the top one first then the 2nd one. I would like to just run one all together. I tried this but it did not work.
(mysql_escape_string\()*$_REQUEST\[\'([^']*)\'\]\)(\)*)
So below is what works but again have to do it twice.
$_REQUEST\[\'([^']*)\'\]
mysql_escape_string\($_REQUEST\[\'([^']*)\'\]\)
(isset($_GET['\1'])?mysql_real_escape_string($_GET['\1']):false)
(isset($_POST['\1'])?mysql_real_escape_string($_POST['\1']):false)
============================ Update: Yeah, I figured out that Notepad++ did not support most reg exp after some research. I guess one additional step can not hurt a person. Its just laziness.
*NOTE: BUT if anyone wants to try feel free to comment. At least it is just 2 steps and not 20.
