Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 116 Bytes

multiple_spaces.md

File metadata and controls

8 lines (6 loc) · 116 Bytes

Match multiple spaces

/\s{2,}/
  • \s - any whitespace symbol
  • {2,} - match only 2 and more symbols