Is there a built-in IsLowerCase() in .NET?
|
|
|||||
|
|
|
Do you mean |
||
|
|
|
|
Guys why this LINQ abuse (ToList(), ToArray(), All(), Any(), ...) ? I love LINQ and lambdas too but in this case I think the good old foreach is what we need. See the answer of TcKs as reference - but we can do better if we remove the superfluous
because IsLower() is doing the same check. |
||
|
|
|
Please Stop using ToUpper() and ToLower() ! These methods will create a copy of the original string ! you can read my blog post on the subject http://ppetrov.wordpress.com/2008/06/27/dont-use-toupper-or-tolower/ |
||
|
|
|
balabaster, please do not use this approach with FindAll/Count. All you need is
It will stop the iteration on the first upper case character.FindAll create a new List and you use only the Count property. If we have a long string that's in upper case, you will end up with a copy of the original string. |
||
|
|
|
Check here @ MSDN. |
||
|
|
|
|
Keep in mind that localization makes this a non-trivial question. The first example is fine as long as you don't care:
If you do care, do it this way:
This gives you the chance to address culture issues. |
||||||||||
|
|
|
How about:
|
||||||
|
|
|
As others have mentioned you can easily do this for a single char using char.IsLower(ch) But to extend the String primitive, it wouldn't be very difficult. You can extend the BCL relatively simply using the Runtime.CompilerServices namespace:
Or in C#, that would be:
Now you can figure it out using:
Which would return false because there are upper case characters contained within the string. |
||||
|
|
|
|
||
|
|
|
|
Edit: Didn't see the actual meaning of your question. You could use:
As far as easily converting between cases: Sure is:
It's part of the There's also the
Which allows for more variation to change caps and whatnot (like |
||||
|
