Here is the sample view
Home Home
I have tried $1$$21$$41$$61$$81$$101$$121$$141$$161$$181$$201$$221$$241$$261$$281$$301$
but its not get correct value
Here is the sample view
Home Home
I have tried $1$$21$$41$$61$$81$$101$$121$$141$$161$$181$$201$$221$$241$$261$$281$$301$
but its not get correct value
One of the solutions could be:
We cannot help you without seeing:
One thing is obvious: using regular expressions for extracting values from HTML is not the best idea, I would recommend going for CSS Selector Extractor instead, given your response data:
<a class="main mainAnchor current currentAnchor" tabindex="-1" href="Form1"> <span>Home</span> <a
class="main mainAnchor parent parentAnchor" tabindex="-1" href="Form2"><a
class="main mainAnchor current currentAnchor" tabindex="-1" href="Form3"> <span>Home</span> <a
class="main mainAnchor parent parentAnchor" tabindex="-1" href="Form4">
You can extract all href attributes of the <a>
element as simple as:
More information: CSS Selector Reference