I am looking for a regex to match words formed with specific characters without repeating any character: Example, for a b c and d, how to specify a regex to match those strings:
bdca (match) adb (match) abcg (fail) aab (fail) I tried with ^[abcd]{1,4}$ but it accepts repeated characters (last example).
Please any help?