Ver Mensaje Individual
  #11 (permalink)  
Antiguo 13/03/2015, 06:48
Avatar de Profesor_Falken
Profesor_Falken
 
Fecha de Ingreso: agosto-2014
Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 4 meses
Puntos: 182
Respuesta: Conseguir ciertos datos de una web.

Y esto no te sirve?

<a.*>(.+?)</a></h2>

Código Java:
Ver original
  1. Pattern pattern = Pattern.compile("<a.*>(.+?)</a></h2>");
  2.         Matcher matcher = pattern.matcher("<div class=\"bloque margen\"><a name=\"p4653\"></a><h2><a class=\"identidad\" href=\"categoria/4653/\" title=\"Limpiar\">LO QUE QUIERO SACAR</a></h2> ");
  3.         matcher.find();
  4.         System.out.println(matcher.group(1));

Al final es solo probar en la herramienta...
http://www.regexplanet.com/advanced/java/index.html

Un saludo
__________________
If to err is human, then programmers are the most human of us