vote up 1 vote down star

How can I rewrite this code to check for all characters including the swedish å, ä, and ö characters?

      alphaExp = /^[a-zA-Z]+$/;

The above only checks against english letters!

The swedish contains å, ä, ö coming after the Z... rest is all the same as english.

Thanks

flag

3 Answers

vote up 2 vote down check

Pretty much straight from the horse's mouth:

Support for internationalization in JavaScript's RegExp is virtually nonexistent.

See the posts following the linked one for how to get around this (by defining your own character class).

link|flag
vote up 1 vote down

You have PHP and JavaScript marked in here. For the JavaScript answer, see the previous answer from Matt Ball.

For the PHP answer, see \p and friends. \p{L} for example.

php -r '$foo = "täst"; if ( preg_match("/^\\p{L}+$/",$foo) ) echo "yay\n";'
link|flag
Since the link to documentation is missing: php.net/manual/en/… – Justin Johnson Nov 3 at 21:38
vote up 2 vote down

Did you try /^[a-zA-ZäöåÄÖÅ]+$/?

In my Firefox, /^[a-zA-ZäöåÄÖÅ]+$/.test("öÅ"); evaluates to true.

link|flag
really, thanks I will try that right away... thanks – camran Nov 3 at 19:12

Your Answer

Get an OpenID
or

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