Hi,
I'd like to give my users the option to not only fill in letters and numbers, but also "special" letters like the "á", "é" etc. Though I do not want them to be able to use symbols like "!", "@", "%" etc.
Is there a way to write a regex to accomplish this? (preferably without specifying each special letter)
Now I have;
$reg = '/^[\w\-]*$/';
Thanks in advance!