i try to split words in a String with string.split() and use regExp as separator, it also splits with s.
'what a mess'.split(RegExp('[\s]')); // -> ["what", "a", "me", "", ""]
how can i say that only the whitespace is a separator? thanks you for the help