I am creating a custom Data Domain using Informatica Enterprise Data Catalog and I need a regex code for a 6 character alphanumeric code where the first 3 characters are letters and the last 3 characters are alphanumeric.
I tried this but it did not work:
^[a-zA-Z]{3,}[a-zA-Z0-9]{3,}$