ATENCIÓN AL CLIENTE: +34 923 199 148

Método para convertir en hipervínculos las direcciones URL de un String

Con el siguiente método podremos convertir en hipervínculos (enlaces) todas las direcciones URL encontradas en una cadena de texto, que será pasada como parámetro al método.

public String getLinks(String text)
{
   String pattern;
   pattern = @”(http://([w.]+/?)S*)”;
   Regex re = new Regex(pattern,RegexOptions.IgnoreCase | RegexOptions.Compiled);
   text = re.Replace(text, “<a href=”$1″” target=””_blank””>$1</a>””);
   return text;
}
Quizá te interese...
Llamada a un método en el servidor en C# desde un evento controlado en el cliente vía JavaScript en ASP.NET usando Telerik.
Deja un comentario...
Suscribirme
Notificación de
guest
0 Comentarios
Comentarios en línea
Ver todos los comentarios