I need to extract ONLY those publications from the web page http://www.informatik. uni-trier.de/~ley/pers/hd/r/Rao:Rahul.html, where the first author is Rahul Rao.
I have tried the following code ,but it doesn't give me any output.
What do I need to get the preferred output? Thank you in advance.
I have tried the following code ,but it doesn't give me any output.
Code:
for( Element element : doc.select("table span.this-person.title") ){
System.out.println(element.text());
}
Comment