링크

    [Sliveright] 페이지 링크걸기

    using System.Windows.Browser; HtmlPage.Window.Navigate(new Uri("http://www.i-memory.net", UriKind.Absolute), "_blank"); 달랑 이거.. ㅋ 필요할 때만 복사해야 써야긋다.. ㅋ

    본문에서 사이트주소(URL)만 링크시키기.. [정규식]

    Function ereg_replace(ptrn, replStr, strng) Dim regEx Set regEx = New RegExp regEx.Pattern = ptrn regEx.IgnoreCase = True regEx.Global = True ereg_replace = regEx.Replace(strng, replStr) End Function content = ereg_replace("((http|https|ftp|telnet|news):\/\/[a-z0-9-]+\.[][a-zA-Z0-9:&#@=_~%;\?\/\.\+- ]+)", "$1", content) 이렇게 하면 본문(content) 중에서 http, https, ftp, telnet, news 등으로 되어있는 주소에 자동으로 링크 를..