vote up 8 vote down star
1

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

flag

10 Answers

vote up 33 vote down check

Try this:

string.Equals(a, b, StringComparison.CurrentCultureIgnoreCase);
link|flag
You should add a link, it improves the quality of answers by quite a bit. – Samuel Mar 10 at 16:55
I'm a relative StackOverflow newbie -- can you explain what you mean by adding a link? Do you mean to the MSDN docs? – John Feminella Mar 10 at 16:56
gosh you're quick .. lol I was typing the answer you got me first =D – Erick Mar 10 at 16:56
You can add an MSDN link (which I usually do) or if you find any interesting blog posts or such that maybe expand the answer. – Samuel Mar 10 at 17:48
1  
If you want culture sensitive comparison, use this method. If you just want to make sure "FILE" and "file" are both accepted, use "OrdinalIgnoreCase" or your code might not work in places like Turkish locales. For more info, see moserware.com/2008/02/… – Jeff Moser Mar 10 at 19:07
show 3 more comments
vote up 5 vote down
System.Collections.CaseInsensitiveComparer

or

System.StringComparer.OrdinalIgnoreCase
link|flag
Does this effect the entire application? – GateKiller Mar 10 at 16:56
No, only when you use it. – leppie Mar 10 at 16:56
Where can I find more info on this. Does this mean I can use == for a case insensitive match? – GateKiller Mar 10 at 17:00
vote up 3 vote down
string.Equals(StringA, StringB, StringComparison.CurrentCultureIgnoreCase);
link|flag
vote up 1 vote down

There are a number of properties on the StringComparer static class that return comparers for any type of case-sensitivity you might want:

StringComparer Properties

For instance, you can call

StringComparer.CurrentCultureIgnoreCase.Equals(string1, string2)

or

StringComparer.CurrentCultureIgnoreCase.Compare(string1, string2)

It's a bit cleaner than the string.Equals or string.Compare overloads that take a StringComparison argument.

link|flag
vote up 1 vote down

or

if (StringA.Equals(StringB, StringComparison.CurrentCultureIgnoreCase)) {

but you need to be sure that StringA is not null. So probably better tu use:

string.Equals(StringA , StringB, StringComparison.CurrentCultureIgnoreCase);

as John suggested

EDIT: corrected the bug

link|flag
vote up 1 vote down

System.StringComparer.OrdinalIgnoreCase

http://www.moserware.com/2008/02/does-your-code-pass-turkey-test.html

link|flag
vote up 0 vote down

You can use

if (stringA.equals(StringB, StringComparison.CurrentCultureIgnoreCase))
link|flag
vote up 0 vote down

Operator? NO, but I think you can change your culture so that string comparison is not case-sensitive.

// you'll want to change this...
System.Threading.Thread.CurrentThread.CurrentCulture
// and you'll want to custimize this
System.Globalization.CultureInfo.CompareInfo

I'm confident that it will change the way that strings are being compared by the equals operator.

link|flag
That's a bit an ugly hack imho... – Frederik Gheysels Mar 13 at 9:47
Yeah, to say the very least it's utterly not what you would want to do unless you want all string comparisons to be case insensitive. But I think it changes the behavior of the equals operator. – John Leidegren Mar 13 at 11:45
vote up 0 vote down
if (StringA.ToUpperInvariant() == StringB.ToUpperInvariant()) {

People report ToUpperInvariant() is faster than ToLowerInvariant().

link|flag
Invariant might be a bad idea if the current or desired culture has special rules for upper-casing. – OregonGhost Mar 10 at 16:56
And the semantics are different too. – leppie Mar 10 at 16:57
Does this create a new copy of each string? If so, bad idea. – ck Mar 10 at 17:00
This will also throw an exception if either (or both) strings are null. – tvanfosson Mar 10 at 17:01
Performance-wise, this is not such a good solution as you will create 2 new string instances here as well. – Frederik Gheysels Mar 13 at 9:48
vote up -1 vote down
string.Compare(string1, string2, true)
link|flag
This can have I18N problems. – Jay Bazuzi Mar 10 at 17:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.