I have that text :
<a href="/extend/themes/bizway">BizWay</a>
And i want to use regular expression to get the BizWay word only extracted from the inner text of the a tag. And by the way that is a sample a tag , BizWay can be any word
So let`s say i want a REGEX like :
<a href=" + '"' + "/extend/themes/WORD" + '"' + ">WORD</a>
Where WORD = WORD
EDIT :
I have tried the following REGEX Pattern :
@"<a href=" + '"' + "/extend/themes/.*" + '"' + @">.*</a>"
But it gives me the whole line.
I`d really appreciate your help.