I'm using input pattern attribute to valiate a form. I have some text fields that allow aplphanumeric digits, some selected characters (',-, accented chars, spaces) and at least one alphabetic character, with a min. length of 3.
my current regex is:
[0-9a-zA-Z-'áéíóúÁÉÍÓÚàèìòù ]{3,100}
and I can't really grasp the concept of how to require at least one character; I know I should use +, but the rest of the regexp fails.