up vote 0 down vote favorite

Hi,

I need a function or a regular expression to validate strings which contain alpha characters (including French ones), minus sign (-), dot (.) and space (excluding everything else)

Thanks

link|flag

80% accept rate

6 Answers

up vote 1 down vote accepted
/^[a-zàâçéèêëîïôûùüÿñæœ .-]*$/i

Use of /i for case-insensitivity to make things simpler. If you don't want to allow empty strings, change * to +.

link|flag
1  
Strictly speaking ñ is not french, but the OP did not explicitely exclude non-french characters. – mouviciel Dec 17 '09 at 14:36
French doesn't use some of the characters the regular expression is trying to match, and the regular expression is not generic enough if it wants to match all those characters that are used in languages like French. – kiamlaluno Dec 17 '09 at 14:39
@kiamluno, except for ñ french uses all other mentioned characters, some in only few words, like "où" (where) or "L'Haÿ-les-Roses" (a city near Paris) – mouviciel Dec 17 '09 at 15:08
or "Je suis un Piñata" – nickf Dec 17 '09 at 23:57
up vote 1 down vote

Try:

/^[\p{L}-. ]*$/u

This says:

^         Start of the string
[ ... ]*  Zero or more of the following:
  \p{L}     Unicode letter characters
  -         dashes
  .         periods
            spaces
$         End of the string
/u        Enable Unicode mode in PHP
link|flag
up vote 0 down vote

[\w .-] should suffice, but you'll need to have \w consider the locale and/or put it into Unicode mode, so \w matches what Unicode defines as alpha-numeric characters. How to do that in PHP is probably just a Google away.

link|flag
\w is actually better than /[A-Za-z]/u nice..... – Pragati Sureka Dec 17 '09 at 14:48
up vote 0 down vote

Thanks a lot for all your answers.

link|flag
up vote -1 down vote

This might suit:

/^[ a-zA-Z\xBF-\xFF\.-]+$/

It lets a few extra chars in, like ÷, but it handles quite a few of the accented characters.

link|flag
woo! -1 and accepted! – nickf Dec 17 '09 at 23:56
up vote -1 down vote

/[A-Za-z-\.\s]/u should work.. /u switch is for UTF-8 encoding

link|flag

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.