Possible Duplicate:
Case insensitive contains(string)
With Contains() method of String class a substring can be found.
How to find a substring in a string in a case-insensitive manner?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the IndexOf() method, which takes in a StringComparison type:
If the string was not found, IndexOf() returns -1.