kari555
Newbie
Posts: 1
Registered: 1/5/2009
Member Is Offline
|
| posted on 1/5/2009 at 09:31 AM |
|
|
excluding characters
Hi!
Is it possible to exclude certain characters in a field? Lets say:
/'\ ";:?!()[]{}^|
alpha propably does that:
'alpha' : /^[a-zA-Z.-]*$/,
and it can be extended to include scandinavian alphabets:
'alpha' : /^[a-zæøåäöüA-ZÆØÅÄÖÜ.-]*$/,
But if one would like to use one contact form for all unicode languages it would be nice just to exclude possible harmfull characters - I think, but
how to do that?
|
|
|
|