I am a beginner in writing regex. I want to write a regex which matches only strings (alphanumeric) with unique characters (Does not match if even one char is repeated).
Example:
B1CDEF2354 -- Should match
B1CD102354 -- Should fail! because 1 repeats twice
Given the above two strings, it should only match the first string since all its characters are unique.