Zach's Mugspideyclick logo

GitHub

GitLab

Linkedin

Instagram

Youtube

SoundCloud

Email

Regex Cheat Sheet

https://www.cheatography.com/davechild/cheat-sheets/regular-expressions/

Find more than one space: [ ]{2,}

Find one or more spaces, not followed by a period sign: [ ]{1,}(?!\.)

Find tags: Whitespace, "@" followed by non-whitespace: (?<!\S)\@[\S]*