C# 需要使用 REGEX 来定位网址,这可能吗?
基本上我需要在将字符串加载到 WebBrowser 之前对其进行解析
myString = "this is an example string http://www.google.com , and I need to make the link clickable";
webBrow.DocumentText = myString;
基本上我想要发生的是替换网址,使其看起来像一个超链接,并使用拉入字符串的任何地址来执行此操作。我需要替换网址,以便网址看起来像
<a href='web address'>web address</a>
这将允许我有可点击的链接.. 任何想法?