I am trying to create a regex to match a string with the following criterion:
Should match:
I tried, but didn't get a solution. Can you help me out?
If the programming language you're using supports regex subroutines, then the following one should suit your needs:
^([A-Z](?1)*[0-9]|[0-9](?1)*[A-Z])+$

Visualization by Debuggex
Demo on regex101
using regexp to keep only letters or only numbers and comparing them : (example in javascript)
var str = 'A34DF5';
var result = str.replace(/[^a-z]/gi,'').length == str.replace(/[^0-9]/gi,'').length ;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With