Skip to content

Instantly share code, notes, and snippets.

@gullinbursti
Last active October 8, 2019 03:49
Show Gist options
  • Save gullinbursti/5b768f43e917a494303c6c2900e91540 to your computer and use it in GitHub Desktop.
Save gullinbursti/5b768f43e917a494303c6c2900e91540 to your computer and use it in GitHub Desktop.
RegEx Snippetz
// search for css-classes-in-html:
const re = /\"([a-z0-9]+((\-\w)?[a-z0-9]+)+)\"/;
// https://stackoverflow.com/questions/27928791/how-to-select-via-regex-all-class-notations-in-css-file
// [=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=] //
// search $_POST w/ JSON attrib:
const re = /\$_POST\[\'([a-z_]+)\'\]/; // $data->payload->$1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment