我被困在一个简单的问题上。
我正在使用 RegEx 从 html 标记中提取 url。我想添加常量前缀
"The site is"
到提取的 RegEx 组。
示例标记:
<html>
<body>
<a href="www.stackoverflow.com"></a>
</body>
</html>
我使用的表达式是:
<a\shref="(?<Url>.*?)"></a>
当前我将组网址作为
www.stackoverflow.com
但我希望这样
The site is www.stackoverflow.com
我怎么才能得到它?