Skip to content

Instantly share code, notes, and snippets.

@mttjohnson
Last active February 3, 2016 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mttjohnson/78a71df19b381e6b6d23 to your computer and use it in GitHub Desktop.
Save mttjohnson/78a71df19b381e6b6d23 to your computer and use it in GitHub Desktop.
PHPStorm RegEx Examples

Multi word search anywhere in a file:

(text1)[\s\S]*(text2)|\2[\s\S]*\1

Mulit word search on the same line in a file

^.*text1.+?text2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment