I am building an application which needs to select specific text between html, here is an example:
String:
<p><a href="test0">test1 test2</a>test3</p>
RegExp: (Select text between HTML)(test.)
What I want to select is "test1","test2" and "test3" but not "test0"
Is there any solution??Thanks for any helps
Note: I am using JavaScript for RegExp operation.