I want use \\w regex for to allow alpha numeric but I don\'t want underscore _ to be part of it. Since _ is included in \\w
\\w
_
You could try something like:
[^_\W]+