I need a Java regular expression, which checks that the given String is not Empty. However the expression should ingnore if the user has accidentally given whitespace in the
^\s*\S
(skip any whitespace at the start, then match something that's not whitespace)