I am currently coding a .net windows app using vb.net.
I am trying to pass a regular expression to Regex.Match to extract certain texts from an article. How do I write an if condition within a regular expression? I read this regular expression cheat sheet, according to which a condition can be stated using <?()>, but no example was given.
For example, I have following text:
"Mary have banana. Mary have apple. Mary have NO pear."
I can use the following expression to take out (1) banana, (2) apple, and (3) NO pear:
mary have (.+?\.)+?
But if I want to extract only the fruits that mary has, namely (1) banana and (2) apple, I guess I would need to add a condition in the (.+?\.)+? part, right? How do I list the condition in a regular expression?
Please assist, thank you!
maryis usually spelledMary. Does your example really havemary? (2) The third singular present form ishas, nothave. Does your example havehave? (3) Banana and apple are countable nouns, so the correct form isa banana,an apple. Does you example really havebanana,apple? – sawa Apr 13 '11 at 9:05