string body = Selenium.GetBodyText();

if (body.Contains("software", StringComparison.CurrentCultureIgnoreCase))
{
   //do something
}

I get a string does not contain a definition for Contains message when I do the above. What am I doing wrong here? Thanks in advance everyone!

I am trying to check if body has the string "software", "Software" or "SOFTWARE". body will contain paragraphs and paragraphs of text (string).

link|improve this question

2  
you have string body, then using bodyText, if it is not a typo post the declaration of bodyText – Joe Jul 28 '11 at 13:55
oops...sorry...that's a mistake. Let me fix it quick – Maya Jul 28 '11 at 13:55
feedback

8 Answers

up vote 2 down vote accepted

You can use regular expression to match a string search in C#. You also have the option to ignore case.

if (System.Text.RegularExpressions.Regex.IsMatch(s, sPattern, System.Text.RegularExpressions.RegexOptions.IgnoreCase))

This link might be useful: How to: Search Strings Using Regular Expressions (C# Programming Guide)

link|improve this answer
feedback

I'm not sure if you are using .NET 1.1, but it did not contain the method Contains. You have to use IndexOf. .NET 2.0 added the method Contains (per MSDN). With IndexOf, you can use StringComparison.

link|improve this answer
feedback

I don't believe string has an overload of Contains taking a StringComparison. However, you could use IndexOf which does:

if (body.IndexOf("software", StringComparison.CurrentCultureIgnoreCase) != -1)
link|improve this answer
1  
wouldn't the error message indicate that he is using an older framework? It seems the error message would be different if the method signature was wrong. – 0A0D Jul 28 '11 at 13:58
@ 0A0D: I am a "she" :) – Maya Jul 28 '11 at 14:02
@0A0D: Good point - it should be "No overload for method Contains takes 2 arguments". I guess we'll see what Maya says :) – Jon Skeet Jul 28 '11 at 14:06
@Maya Another possibility would be to extend the String class with an extension method using code like above. You would essentially be creating your own overload. – George Jul 28 '11 at 14:07
@Maya: I'm sorry Maya, I hope you are not offended. It was meant as generality. – 0A0D Jul 28 '11 at 14:08
show 3 more comments
feedback

From the code what has been pasted, you are declaring a variable "body" of type string and using another variable "bodyText" which is undeclared.

link|improve this answer
feedback

String doesn't have a Contains method with that signature. str.Contains(chr, StringComparison), not str.Contains(string, StringComparison)...

link|improve this answer
feedback

String.Contains only take one parameter - your code should be

bodyText.Contains("software");
link|improve this answer
feedback

Contains has only one parameter - the string it is comparing against. Did you mean, Equals which does take a StringComparison?

link|improve this answer
feedback

You can still use Contains provided you compare it after converting it to same case(UPPER or lower)

eg:

"samplestring".ToUpper().Contains("SAMPLESTRING")
link|improve this answer
2  
Not a good idea, due to the way some cultures handle upper-casing. For example, "mail".ToUpper().Contains("MAIL") may not return true. – Jon Skeet Jul 28 '11 at 14:06
thanks skeet.didn think over. how about converting the argument too to uppercase and comparing. ("samplestring".ToUpper().Contains("samplestring".ToUpper())) – arjunshetty2020 Jul 28 '11 at 14:14
1  
I'm not even sure whether that will work. Basically performing case-insensitive matching ideally shouldn't involve conversion, as far as I'm aware. – Jon Skeet Jul 28 '11 at 15:00
feedback

Your Answer

 
or
required, but never shown

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