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:
Try using (([A-Z]+[0-9])|([0-9]+[A-Z])) .It should solve.