-----------------------------------------------------------

New Message on BDOTNET

-----------------------------------------------------------
From: Raj_MS
Message 4 in Discussion

I am assuming you mean "letter" when you say "alphabet". "Alphabet" is a "The letters 
of  a language, arranged in the order fixed by custom".   If what you want is a 
regular expression which can recognize a letter in any language, there is a solution. 
Thankfully, the Regex class is Unicode aware. So, the pattern \w represents one "word 
character", which is an uppercase letter or a lowercase letter or a titlecase letter 
or a digit, in any Unicode language. Notice that this does not cover some special 
cases like "modifier letters", examples of which are "matras" in Hindi or Tamil.   You 
could also control this more closely with the pattern \p and Unicode groups. For 
example:        
 Pattern  
matches    \p{Ll}  A lowercase character in any language   \p{Lu} An uppercase 
character in any language  
For a list of possible Unicode groups, look up the UnicodeCategory enumeration.

-----------------------------------------------------------

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you received 
this message by mistake, please click the "Remove" link below. On the pre-addressed 
e-mail message that opens, simply click "Send". Your e-mail address will be deleted 
from this group's mailing list.
mailto:[EMAIL PROTECTED]

Reply via email to