I need to enforace the following regex, and I'm horrible at writing these:
  xx12ab - valid
  x12345 - invalid
  xxxxx1 - invalid
  xxx123 - valid
I need to have a 6 character string that HAS TO HAVE at least 2 alpha chars, and 2 numeric chars, limited to only alpha/numeric in the string.
Thanks.