I was trying to find solution, but couldn't. What will be regex when I have a string of defined length (let's say 10), and one of characters have to be specific letter (let's say 'd').
My first idea was something like this:
^([0-9d]{10})$
But it allows multiple 'd' in string, and I want exactly one.