M
Marlon R
What is the fastest way to tell in string contains lower case letters?
AlexS said:You can use simply
if (mystring.ToLower() != mystring)
James Curran said:er.umm... if (mystring.ToUpper() != mystring)
(Imagine if mystring was all lower case to begin with.....)
--
Truth,
James Curran
Home: www.noveltheory.com Work: www.njtheater.com
Blog: www.honestillusion.com Day Job: www.partsearch.com
(note new day job!)
Marlon R said:What is the fastest way to tell in string contains lower case letters?