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.
|
|
That has nothing to do with inverting the Regexp. Just search for the relevant Text and put it in a group. |
||
|
|
|
|
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:
|
||
|
|
|
|
Can you give an example? Do you want to the "src" data... or, everything between the tags? |
||
|
|
|
|
Not sure what you mean. Are you talking about capturing groups? |
||
|
|
