Skip to content

Instantly share code, notes, and snippets.

@horaciod
Last active June 20, 2021 23:22
Show Gist options
  • Save horaciod/c3a19fcba5a1128f65ac2a8ccd691eee to your computer and use it in GitHub Desktop.
Save horaciod/c3a19fcba5a1128f65ac2a8ccd691eee to your computer and use it in GitHub Desktop.
replace regular expression in VSCode
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