Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

Help with validate certain chars

Quote Reply
Help with validate certain chars
For my keyword-field (user entree) i use the following code:

^[\w\s]+$

With this it is allowed to enter chars, spaces and 1-0;

Problem so far, i need - and german ä,ü,ö,ß

Has someone a clue to fix this?
Quote Reply
Re: Help with validate certain chars In reply to
You should use:

^[\w\säüöß]+$

Cheers,

Alex