I actually got this regex ^[A-zÀ-ÿ ]{3,50}$
or ^[A-zÀ-ÿ\s]{3,50}$
that finds 3 to 50 characters of this specific alphabets.
I need a new regex to accept only 1 whitespace character \s
maintaining the {3,50} limitation.
I tried ^[A-zÀ-ÿ]+\s[A-zÀ-ÿ]{3,50}$
but it is limiting the last tuple to 3-50 and not the whole thing.
Any help would be appreciated, Thank you