All Sorts of ways to write this, and since you're using Java, why not use a Java regex "feature"? :D
String regexString = "(?<!\\s+)[\\w\\s&&[^_]]{0,20}";
Broken down, this says:
(?<!\\s+) # not following one or more whitespace characters,
[ # match one of the following:
\\w # word character (`a-z`, `A-Z`, `0-9`, and `_`)
\\s # whitespace characters
&&[^_] # EXCEPT FOR `_`
] #
{0,20} # between 0 and 20 times
It will match a-z, A-Z, 0-9, and white space, even though the \w would otherwise include underscores, the extra part there says NOT underscores - I think it's unique to Java... anyways, that was fun!