Yo no se por qué pero luego de 14 años en el Foro, me sigue pasando lo mismo, hago una consulta, y ni bien vuelvo al código y pruebo algo distinto, doy con la solución.
Con un poco de ayuda de Google y buscando algo distinto, di con algo que me solucionó el problema, dejo el código para los interesados
Código Java:
Ver originalString theTitlePattern
= "<title> (.*?) - YouTube</title>"; String theImagePattern
= "<link rel=\"image_src\" href=\"(.*?)\">";
Pattern titlePattern = Pattern.compile(theTitlePattern);
Matcher titleMatcher = titlePattern.matcher(output);
if (titleMatcher.find()){
System.
out.
println(titleMatcher.
group(1)); }
Pattern imagePattern = Pattern.compile(theImagePattern);
Matcher imageMatcher = imagePattern.matcher(output);
if (imageMatcher.find()){
System.
out.
println(imageMatcher.
group(1)); }
Perdón por las molestias, aunque es bueno estar de vuelta en el Foro :D Espero que esto quede de ayuda para alguien que lo pueda necesitar.