vote up 0 vote down star

How would I invert .NET regex matches? I want to extract only the matched text, e.g. I want to extract all IMG tags from an HTML file, but only the image tags.

flag

71% accept rate

4 Answers

vote up 1 vote down check

That has nothing to do with inverting the Regexp. Just search for the relevant Text and put it in a group.

link|flag
vote up 1 vote down

I'm with David H.: Inversion would imply you don't want the matches, but rather the text surrounding the matches, in which case the Regex method Split() would work. Here's what I mean:

static void Main(string[] args)
{
    Regex re = new Regex(@"\sthe\s", RegexOptions.IgnoreCase);

    string text = "this is the text that the regex will use to process the answer";

    MatchCollection matches = re.Matches(text);
    foreach(Match m in matches)
    {
        Console.Write(m);
        Console.Write("\t");
    }

    Console.WriteLine();

    string[] split = re.Split(text);
    foreach (string s in split)
    {
        Console.Write(s);
        Console.Write("\t");
    }
}
link|flag
vote up 0 vote down

Can you give an example?

Do you want to the "src" data... or, everything between the tags?

link|flag
vote up 0 vote down

Not sure what you mean. Are you talking about capturing groups?

link|flag

Your Answer

Get an OpenID
or

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