Yazılım Geliştirme Uzmanı & E-Ticaret Danışmanı
Classic Asp , Excel , Ms Project, Excel VBA , E-Ticaret , Mobil , Desktop
Tel : 0 534 797 31 21 , Mail : baranseren@gmail.com
Function CreateURL(Text)

Function CreateURL(Text) 3.4.2011 13:09:07

Yazıda bulunan url leri link`e çevirmek için regular expressions ile hazırlanmış fonksiyon.
  1. Function CreateURL(Text)  
  2.     Set regEx = New RegExp  
  3.         With regEx  
  4.             .IgnoreCase = True  
  5.             .Global     = True  
  6.             .Pattern    = "\[url=((http|https|ftp)\://[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}?/?[a-zA-Z0-9\-\._\?\,\`/\\\+&%\$#\=~]*)\](\s*[a-zA-Z]+((.|\n)*?)\s*)\[\/url\]"  
  7.         End With  
  8.     Set objEx = regEx.Execute(Text)  
  9.   
  10.         For Each x In objEx  
  11.             Text = Replace(Text,x,"<a target="`_blank`" href="`"&" x.submatches(0)="" &"`="">"& Trim(x.SubMatches(2)) &"</a>", 1,-1,1)  
  12.         Next  
  13.     CreateURL = Text  
  14. End Function  



Tags :