Please, help me for this:
Match all numbers, letters, or underscores using the shortest possible pattern:
>Solution :
Something like that should do the trick:
\w
Without using \w,
[a-zA-Z0-9_]
\w: Matches any word character, even a digit and _