Last active
June 20, 2021 23:22
-
-
Save horaciod/c3a19fcba5a1128f65ac2a8ccd691eee to your computer and use it in GitHub Desktop.
replace regular expression in VSCode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
de | |
if (isset($_REQUEST['aplic_mensaje'])) { | |
$this->mensaje = $_REQUEST['aplic_mensaje']; | |
} | |
search : \$_REQUEST\[(.*?)\] | |
replace : getrequest($1) | |
a | |
if (isset(getrequest('aplic_mensaje'))) { | |
$this->mensaje = getrequest('aplic_mensaje'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment