Advertisement
ROMaster2

Untitled

Oct 20th, 2016
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. cs = Case sensitive vs Case in-sensitive
  2. ww = Whole word vs not whole word
  3. HAS/NOT = Sentence has tag/Does not have tag
  4.  
  5. cs/!ww/HAS - runs
  6. !cs/!ww/HAS - (?i)runs
  7. cs/ ww/HAS - \bruns\b
  8. !cs/ ww/HAS - (?i)\bruns\b
  9. cs/!ww/NOT - ^(?:(?!runs).)*$
  10. !cs/!ww/NOT - ^(?:(?!(?i)runs).)*$
  11. cs/ ww/NOT - ^(?:(?!\bruns\b).)*$
  12. !cs/ ww/NOT - ^(?:(?!(?i)\bruns\b).)*$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement