So I have a text file that is having special tags like:
{A1}
Text 1
{A1}
{A2}
Text 2
{A2}
How can I extract from the text using reg-ex the portion Text 2 or Text 1 ..?
So I what to be able to extract only what is between tags A1 or only what is between Tags A2 .. not all of them … at once!
thanks!
In C# you can do something like this:
Nested tags are not suppoerted.