Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 371 Bytes

regex.md

File metadata and controls

17 lines (9 loc) · 371 Bytes

Ruby Regular Expression Text Patterns Quick Reference (Cheat Sheet)

Options

  • /i - case insensitive
  • /o - only interpolate #{} blocks once
  • /m - multiline mode - '.' will match newline
  • /x - extended mode - whitespace is ignored

Patterns (Examples)

References