Hi,
I know that the following is case sensitive:
if (StringA == StringB) {
So is there an operator which will compare two strings in an insensitive manner?
Many Thanks
Stephen
|
1
|
|
|
|
|
|
Try this:
|
||||||||||||
|
|
|
or
|
||||||
|
|
|
|
||
|
|
|
|
There are a number of properties on the For instance, you can call
or
It's a bit cleaner than the |
|||
|
|
|
|
or
but you need to be sure that StringA is not null. So probably better tu use:
as John suggested EDIT: corrected the bug |
|||
|
|
|
|
System.StringComparer.OrdinalIgnoreCase http://www.moserware.com/2008/02/does-your-code-pass-turkey-test.html |
||
|
|
|
|
You can use
|
||
|
|
|
|
Operator? NO, but I think you can change your culture so that string comparison is not case-sensitive.
I'm confident that it will change the way that strings are being compared by the equals operator. |
||||
|
|
|
People report ToUpperInvariant() is faster than ToLowerInvariant(). |
||||||||||
|
|
|
|
||
|