I am stuck at a simple problem.
I am using RegEx to extract url's from html markup. I want to add constant prefix
"The site is"
to the extracted RegEx group.
Sample markup:
<html>
<body>
<a href="www.stackoverflow.com"></a>
</body>
</html>
and the expression I am using is:
<a\shref="(?<Url>.*?)"></a>
Currenlty I am getting group Url as
www.stackoverflow.com
but I want that as
The site is www.stackoverflow.com
How can I get it?