SyntaxFix
Write A Post
Hire A Developer
Questions
Get all "words" in a string
/([^\s]+)/g
Basically ^/s means break on spaces (or match groups of non-spaces) Don't forget the g for Greedy
^/s
g