Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 245 Bytes

matching.md

File metadata and controls

13 lines (7 loc) · 245 Bytes

Matching

Basic Matching

  • *failure* - Match anywhere in a string
  • failure* - Match at the beginning of a string
  • *failure - Match at the end of a string

Regex Matching

  • /fail(.+)/ - Match expressions with fail in them