I now using in Regex this expressions,
Regex
([\\x20-\\x7E]+) - match everything with space
([\\x20-\\x7E]+)
([\\x21-\\x7E]+) - match everyth
([\\x21-\\x7E]+)
To match everything but whitespace use:
[^\s]+