vote up 11 vote down star
1

Is there a way to make the following return true?

string title = "ASTRINGTOTEST";
title.Contains("string");

There doesn't seem to be an overload that allows me to set the case sensitivity..
Currently I UPPERCASE them both, but that's just silly.

UPDATE
The sillyness I refer to is the i18n issues that come with up- and down casing.

flag

70% accept rate
How is it silly? Do you mean that you're doing 2 passes on the string? I would think case-insensitive comparisons merely combine the two steps. – Calyth Jan 14 '09 at 21:44
Doesn't seem silly to me either. – Ed Swangren Jan 14 '09 at 21:45
Silly or not, it's the best way to go about it. – Matthew Brubaker Jan 14 '09 at 22:02
Since I will use it on the worldwebz i have to take foreign characters into account. As mentioned in an answer below, upcasing as well as downcasing gives internationalization issues. – boris callens Jan 15 '09 at 14:15

5 Answers

vote up 39 vote down check

You could use IndexOf() and pass StringComparison.OrdinalIgnoreCase

string title = "STRING";
bool contains = title.IndexOf("string", StringComparison.OrdinalIgnoreCase) >= 0;

Even better is defining a new extension method for string

public static bool Contains(this string source, string toCheck, StringComparison comp) {
  return source.IndexOf(toCheck, comp) >= 0;
}

string title = "STRING";
bool contains = title.Contains("string", StringComparison.OrdinalIgnoreCase);
link|flag
I've added this to my string extensions class... – tvanfosson Jan 14 '09 at 22:01
Indeed does look like the best way to go. Weird that such a thing is not standard framework. Thx. – boris callens Jan 15 '09 at 14:17
vote up 0 vote down

You could always just up or downcase the strings first.

string title = "string":
title.ToUpper().Contains("STRING")  // returns true

Oops, just saw that last bit. A case insensitive compare would *probably* do the same anyway, and if performance is not an issue, I don't see a problem with creating uppercase copies and comparing those. I could have sworn that I once saw a case-insensitive compare once...

link|flag
Interestingly, I've seen ToUpper() recommended over the use of ToLower() in this sort of scenario, because apparently ToLower() can "lose fidelity" in certain cultures - that is, two different upper-case characters translate to the same lower-case character. – Matt Hamilton Jan 14 '09 at 21:47
2  
Search for "Turkey test" :) – Jon Skeet Jan 14 '09 at 21:48
Wow, did not know that, thanks! – Ed Swangren Jan 14 '09 at 21:53
1  
In some French locales, uppercase letters don't have the diacritics, so ToUpper() may not be any better than ToLower(). I'd say use the proper tools if they're available - case-insensitive compare. – Blair Conrad Jan 14 '09 at 22:03
Don't use ToUpper or ToLower, and do what Jon Skeet said – Peter Gfader Aug 21 at 2:49
vote up 0 vote down

If you want to call an extension method on strings you could do this...

public static class StringExtensions
{
    public static bool ContainsInsensitive(this string searchField, string searchTerm)
    {
        return searchField.ToLower().Contains(searchTerm.ToLower());
    }
}
link|flag
This will create 2 new string objects to perform the comparison – Martin Pritchard Aug 14 at 9:24
vote up 5 vote down

You can use IndexOf() like this:

string title = "STRING";

if (title.IndexOf("string", 0, StringComparison.CurrentCultureIgnoreCase) != -1)
{
    // The string exists in the original
}

Since 0 (zero) can be an index, you check against -1.

link|flag
vote up 0 vote down

Wish I could mark as duplicate: http://stackoverflow.com/questions/234591/upper-vs-lower-case

Shortcut to the accepted answer: http://msdn.microsoft.com/en-us/library/system.stringcomparer.aspx

Alternative solution (might work better in your case): http://stackoverflow.com/questions/234591/upper-vs-lower-case#234629

link|flag
That question regards COMPARING strings of case, this one is CONTAINING strings of differing case. – ajmastrean Jan 14 '09 at 22:06
It is exactly the existing case insensitive compare method that made me think there would be a case insensitive contain method too.. – boris callens Jan 15 '09 at 14:13

Your Answer

Get an OpenID
or

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