Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to achieve the following functionality using LINQ.

Case 1:

listOfStrings = {"C:","D:","E:"}
myString = "C:\Files"

Output: True

Case 2:

listOfStrings = {"C:","D:","E:"}
myString = "F:\Files"

Output: False
share|improve this question

3 Answers

up vote 8 down vote accepted
bool b = listOfStrings.Any(myString.StartsWith);

or slightly more verbose (but easier to understand):

bool b = listOfStrings.Any(s => myString.StartsWith(s));
share|improve this answer
Hey Marc, how did you change your answer without having an 'edit' show up? – Drew Noakes Feb 5 '09 at 14:25
I think it depends on a few factors: time; votes; comments - I haven't figured out the exact rules. – Marc Gravell Feb 5 '09 at 15:18

You can use the Any extension method:

bool result = listOfStrings.Any(str => str.StartsWith(...));
share|improve this answer

Try this:

bool contains = listOfStrings.Exists(s => myString.IndexOf(s)!=-1);

If you know that it should be at the start of the string, then:

bool contains = listOfStrings.Exists(s => myString.StartsWith(s));

EDIT Marc's solution is nicer :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.