Skip to content

Instantly share code, notes, and snippets.

@fl3xice
Created September 7, 2019 07:56
Show Gist options
  • Save fl3xice/3a51fce88ba51498f7b659951119323c to your computer and use it in GitHub Desktop.
Save fl3xice/3a51fce88ba51498f7b659951119323c to your computer and use it in GitHub Desktop.
regex variable in javascript
<?php //php 7.0.8
$code = "
var test = 1;
var tgfht = 2;
";
preg_match_all('/var[ |](\w+)[ |][=,+]+[ |]([0-9]+|\w+|"\w+");/im',$code,$preg,PREG_OFFSET_CAPTURE);
print_r($preg);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment