prograhammer
7/21/2018 - 9:47 PM

Regex by example

Regex by example

Regex by Example

Resources

https://regex101.com/ https://medium.com/factory-mind/regex-tutorial-a-simple-cheatsheet-by-examples-649dc1c3f285

Examples

  1. \('.+'\)\.foobar
  2. \('[A-z_\-.]*'\)\.foobar
  3. \(['|"][A-z_\-.]*['|"]\)\.foobar (also finds: ("test").foobar)

finds: ('test').foobar