Developers Heaven Forum

General => General Discussion => Topic started by: admin on December 09, 2008, 03:51:45 PM

Title: Filter non English input characters string
Post by: admin on December 09, 2008, 03:51:45 PM
If you'd like to filter input text to be only English alphanumeric characters with space, ".", "-", and "_"
you can use the following regular expression with any programming language.

Code: [Select]
^[a-zA-Z0-9\s.\-_]+$
for more information about Regular expression read this:
http://developers-heaven.net/forum/index.php/topic,109.msg200/topicseen.html#msg200