请帮助我使用 C# .netRegex Replace
方法从此处替换所有其他 Facebook 信息。
例子
<a href="/l.php?u=http%3A%2F%2Fon.fb.me%2FOE6gnB&h=yAQFjL0pt&s=1" target="_blank" rel="nofollow nofollow" onmouseover="LinkshimAsyncLink.swap(this, "http:\/\/on.fb.me\/OE6gnB");" onclick="LinkshimAsyncLink.swap(this, "\/l.php?u=http\u00253A\u00252F\u00252Fon.fb.me\u00252FOE6gnB&h=yAQFjL0pt&s=1");">http://on.fb.me/OE6gnB</a>somehtml
输出
somehtml <a href="http://on.fb.me/OE6gnB">on.fb.me/OE6gnB</a> somehtml
我尝试遵循正则表达式,但它们对我不起作用
searchPattern = "<a([.]*)?/l.php([.]*)?(\">)?([.]*)?(</a>)?";
replacePattern = "<a href=\"$3\" target=\"_blank\">$3</a>";
谢谢