I have a html element like below
<a href="/Test/URL/Page/" title="" >Test</a>
I am trying to extract the value 'Page' from the href. I have tried /href="\/(.*)\/"
which gives out 'Test/URL/Page' but couldn't figure out how to proceed further.
Tried /href="\/([^\/]*$)\/"
but this doesnt work.
Without going into details, I do not want to use Html parser or C# code.