SyntaxFix
Write A Post
Hire A Developer
Questions
/^$|\s+/ This matches when empty or white spaces
/^$|\s+/
/(?!^$)([^\s])/ This matches when its not empty or white spaces
/(?!^$)([^\s])/