I've been looking for a good way to have a regex check for a name allowing also for accented letters like in 'René'
I've come up with this:
[a-zÀ-ÿ][\'a-zÀ-ÿ -]*$
Don't know if it was ok to use À-ÿ for the accented letters?
Also discovered you can use hex values in regexes. Is this better?
[a-z\xC0-\xFF][\'a-z\xC0-\xFF -]*$