Types of writing systems:
- Alphabet
- Abjad
- Abugida
- Syllabary
- Logography
In regular expressions we need to tell which "chars" we want to validate:
We use something like this a-zA-Z0-9 to say that we accept all the alphanumeric.
How can we make regular expressions that validate other writing systems non-alphanumerics? (how can I make a regular expression that will validate chinese, or indian, or greek or russian, or someother?
UPDATE:
Using ASP.NET regex engine.
If you don't mind, could you provide me some examples?
Thanks