Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
[VB]foreach(Match match in Regex.Matches("<b>This</b> is some foobar text <b>bundled</b> up in a string...", @"(?i)(?<!\</?)b(?!>)")) Console.WriteLine("Match found at index {0}.", match.Index);[/VB]index 23 is the b of foobar.index 35 is the b of bundled.Isnt that what you want?
[VB]
foreach(Match match in Regex.Matches("<b>This</b> is some foobar text <b>bundled</b> up in a string...", @"(?i)(?<!\</?)b(?!>)"))
Console.WriteLine("Match found at index {0}.", match.Index);
[/VB]
index 23 is the b of foobar.
index 35 is the b of bundled.
Isnt that what you want?