1
I need to extract blocks of text that are inside #Regions:
#region VARIAVEIS GLOBAIS
string aux1 = "teste";
string aux2 = "teste2";
...
#endregion
The return would be:
string aux1 = "teste";
string aux2 = "teste2";
...
How do I do it with Regex?
Remembering that each Gion has a different name.