I would like to have a regex which matches the string with NO whitespace(s) at the beginning. But the string containing whitespace(s) in the middle CAN match. So far i have
use \S at the beginning
^\S+[a-zA-Z0-9-_\\s]+$