I need a regex which will satisfy both conditions.
It should give me true only when a String contains both A-Z and 0-9.
Here\'s what I\'ve tried:
What about ([A-Z].*[0-9]+)|([0-9].*[A-Z]+) ?
([A-Z].*[0-9]+)|([0-9].*[A-Z]+)