In C# is there a way to detect if a string is all caps?
Most of the strings will be short(ie under 100 characters)
|
2
|
|||||||||||
|
|
|
No need to create a new string:
Edit: If you want to skip non-alphabetic characters (The OP's original implementation does not, but his/her comments indicate that they might want to) :
|
||||||||||
|
|
|
Simple?
|
||||||||
|
|
|
I like the LINQ approach. If you want to restrict it to all upper case letters (i.e. no spaces etc):
If you want to just forbid lower case letters:
|
||
|
|
|
|
I would convert the string to all caps (with
|
||
|
|
|
|
Use
|
||
|
|
|
|
Make sure your definition of capitalization matches .Nets definition of capitalization. ToUpper() in .Net is a linguistic operation. In some languages capitalization rules are not straight forward. Turkish I is famous for this.
You could use
You may be tempted to save memory doing character by character capitalization
The above code introduces a bug. Some non English 'letters' require two .net characters to encode (a surrogate pair). You have to detect these pairs and capitalize them as a single unit. Also if you omit the culture info to get linguistic capitalization you are introducing a bug where in some locales your home brew capitalization algorithm disagrees with the the .net algorithm for that locale. Of course none of this matters if your code will never run outside English speaking locales or never receive non English text. |
|||
|
|
|
|
If this needs to have good perf, I'm assuming it happens a lot. If so, take your solution and do it a few million times and time it. I suspect what you've got is better than the other solutions because you aren't creating a new garbage collected object that has to be cleaned up, and you can't make a copy of a string without iterating over it anyways. |
||
|
|
|
|
Regular expressions comes to mind. Found this out there: http://en.csharp-online.net/Check_if_all_upper_case_string |
||
|
|
|
I think the following:
Will work also, and you can make sure that the comparison is made without taking into account the string casing (I think VB.NET ignores case by default). O even use |
||||||||
|