I'm trying to match alphanumeric with the regex below, but still matched the result that I don't need.
([0-9a-z_]+|[0-9a-z]+)
What I really want to match are
Example:
abc123
abc_123
What I don't want to match are
Example:
abc
123
123_123
abc_abc