Foros del Web » Programando para Internet » ASP Clásico »

¿Como converitr una url en un link?

Estas en el tema de ¿Como converitr una url en un link? en el foro de ASP Clásico en Foros del Web. Código: <% 'I once got this function from www . 4guysfromrolla . com 'Usage : InsertHyperlinks(strText) Function InsertHyperlinks(inText) Dim objRegExp, strBuf Dim objMatches, objMatch Dim ...
  #1 (permalink)  
Antiguo 29/06/2006, 15:26
Avatar de oabareload  
Fecha de Ingreso: junio-2006
Ubicación: Distrito Federal, México
Mensajes: 57
Antigüedad: 18 años
Puntos: 0
¿Como converitr una url en un link?

Código:
<%
'I once got this function from www . 4guysfromrolla . com
'Usage : InsertHyperlinks(strText)

Function InsertHyperlinks(inText)
Dim objRegExp, strBuf
Dim objMatches, objMatch
Dim Value, ReplaceValue, iStart, iEnd

  strBuf = ""
  iStart = 1
  iEnd = 1
  Set objRegExp = New RegExp

  objRegExp.Pattern = "\b(www|http|\S+@)\S+\b"  ' Match URLs and emails
  objRegExp.IgnoreCase = True                   ' Set case insensitivity.
  objRegExp.Global = True                       ' Set global applicability.
  Set objMatches = objRegExp.Execute(inText)
  For Each objMatch in objMatches
    iEnd = objMatch.FirstIndex
    strBuf = strBuf & Mid(inText, iStart, iEnd-iStart+1)
    If InStr(1, objMatch.Value, "@") Then
      strBuf = strBuf & GetHref(objMatch.Value, "EMAIL", "_BLANK")
    Else
      strBuf = strBuf & GetHref(objMatch.Value, "WEB", "_BLANK")
    End If
    iStart = iEnd+objMatch.Length+1
  Next
  strBuf = strBuf & Mid(inText, iStart)
  InsertHyperlinks = strBuf
End Function

Function GetHref(url, urlType, Target)
Dim strBuf
  strBuf = "<a href="""
  If UCase(urlType) = "WEB" Then
    If LCase(Left(url, 3)) = "www" Then
      strBuf = "<a href=""htttp://" & url & """ Title=""" & url & """ Target=""_" & Target & """>" & url & "</a>"
    Else
      strBuf = "<a href=""" & url & """ Title=""" & url & """ Target=""_" & Target & """>" & url & "</a>"
    End If
  ElseIf UCase(urlType) = "EMAIL" Then
    strBuf = "<a href=""mailto:" & url & """ Title=""" & url & """ Target=""_" & Target & """>" & url & "</a>"
  End If  
  GetHref = strBuf
End Function
%>
Ya supe como y aqui esta el código para convertir texto con url en texto con links. Quitenle una "t" al "htttp://"

Última edición por oabareload; 29/06/2006 a las 17:19
  #2 (permalink)  
Antiguo 29/06/2006, 16:16
Avatar de pempas  
Fecha de Ingreso: diciembre-2003
Ubicación: Barcelona
Mensajes: 985
Antigüedad: 20 años, 5 meses
Puntos: 6
No entendí nada...
  #3 (permalink)  
Antiguo 30/06/2006, 16:43
Avatar de Myakire
Colaborador
 
Fecha de Ingreso: enero-2002
Ubicación: Centro de la república
Mensajes: 8.849
Antigüedad: 22 años, 4 meses
Puntos: 146
mmmm, "a golpe de ojo", veo que sirve para capturar un texto que tenga algunas direcciones web dentro del mismo y desplegarlo pero con dichas direcciones aparecerían como links (<a href=xxxx>texto</a>).

No se si ya esta en las FAQ's pero estaría bien colocarlo ahí (jejeje, quiza hayan algunas personas que aún las lean, jeje)
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 23:33.