vote up 0 vote down star

I need to find all the regex matches from a list of strings. For example, I need to be able to take the string "This foo is a foobar" and match any instances of either "foo" or "bar". What would the correct pattern be for this? Also, what input sanitation would I need to do to prevent the inputted text from breaking the pattern?

flag

Sorry if this is not really an answer, but I would recommend you the free tool [Expresso][1]..it makes regex development much easier for cases like yours. [1]: ultrapico.com/Expresso.htm – rodbv Jan 5 at 21:17
Regex tools are most useful if you understand the basics of Regex to begin with. Perhaps the question is poorly written, but it appears that OP is completely unfamiliar with Regex. Matching (foo|bar) is Regex 101. – abelenky Jan 5 at 21:34

3 Answers

vote up 2 vote down check

I'm a little unsure of what your actual question is. To match "foo" or "bar", you'd simply want "foo|bar" for your pattern. If you want to do this to a list of strings, you'd likely want to check each string individually—you could join the strings first and check that, but I'm not sure this would be of much use. If you want to get the exact text that matched your pattern, you should surround the pattern in parentheses—such as "([fg]oo|[bt]ar)", which would match "foo", "goo", "bar", or "tar"—then use the Groups property of the Match object to retrieve these captures, so you can determine exactly which word matched. Groups[1] is the first captured value (that is, the value in the first set of parentheses in your pattern). Groups[0] is the entire match. You can also name your captures—"(?<word>[fg]oo|[bt]ar)"—and refer to them by name—Groups["word"]. I would recommend reading through the documentation on regular expression language elements.

As for sanitizing the input, there is no input that will "break" the regex. It might prevent a match, but that's really kinda what regexes are all about, isn't it?

link|flag
Thanks - I did want "foo|bar". I need to brush up on my regex skills. :) – Jon Tackabury Jan 5 at 21:27
vote up 0 vote down
Regex.IsMatch("This foo is a foobar", "foo|bar")
link|flag
vote up 0 vote down

Are you looking for something like (?:foo|bar)?

link|flag

Your Answer

Get an OpenID
or

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