P
prithvis.mohanty
I need to extract all the href urls and the anchor text with regular
expression match from a html page. I have this
href\s*=\s*(?:""(?<1>[^""]*)""|(?<1>\S+)) regex with me. This only
extracts the href link url . With url I need the anchor text as well.
How can I modify the above regex to get anchor text as well.
expression match from a html page. I have this
href\s*=\s*(?:""(?<1>[^""]*)""|(?<1>\S+)) regex with me. This only
extracts the href link url . With url I need the anchor text as well.
How can I modify the above regex to get anchor text as well.