I'm looking for a Regex for European name. I found this one, works good with javascript:
/^([ \u00c0-\u01ffa-zA-Z'\-])+$/
I convert it for PHP, but it doesn't work:
/^([ \x{00C0}-\x{01FF}a-zA-Z'\-])+$/
My regex must match with name like that:
Jean-Paul le Marchant
Jérôme L'activé
So characters a-zA-Z, no special chars like @#$%^© etc. but all accented/european characters like éèàôç etc.