i'm trying to get two regular expressions for the next xml string:
<string name="mytag1">mycontent1</string>
<string name="mytag2">mycontent2</string>
<string name="mytag3">mycontent3</string>
My first need is to extract all tags, resulting:
mytag1
mytag2
mytag3
The second one is to extract all contents, resulting:
mycontent1
mycontent2
mycontent3
I've tried a lot of regex with no success, any ideas? know that it is a bit tricky... Thanks!!