i need a regex to check following conditions on a string :-
1) it contains only numbers (0-9) 2) string must contain three unique digits 3) there must be no white space in the string 4) and length of the string must be of 10.
valid strings example "1234567890" "1122557890" "7878787808"
invalid strings :- "7878787878" "1111122222"