You will probably have to read up on XML and XPath in one way or the other. A simple way to access that contestant would be to use jOOX, a library I wrote for simple jquery-like interaction with XML in Java. With jOOX, you'd write:
// import the "$() and attr()" operators in your Java class
import static org.joox.JOOX.*;
// With CSS selector syntax, just as in jquery:
String result = $(xmlstring).find("Contestant[Name='ATILIA']").text();
// With XPath
String result = $(xmlstring).xpath("//Contestant[@Name='ATILIA']").text();
// With the jOOX API
String result = $(xmlstring).find("Contestant")
.filter(attr("Name", "ATILIA"))
.text();
Of course, you have many other options. Another one would be to parse the XML without any third-party libraries, as such:
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document document = builder.parse(new InputSource(new StringReader(xmlstring)));
NodeList nodes = document.getElementsByTagName("Contestant");
for (int i = 0; i < nodes.getLength(); i++) {
Element element = (Element) nodes.item(i);
if ("ATILIA".equals(element.getAttribute("Name"))) {
// Found it!
System.out.println(element.getTextContent());
}
}
What I recommend you do not do is treat XML as plain strings and start parsing / reading it with your own substring methods. There are many things that can go wrong with that technique!
yourString.replaceFirst(".*?Name=\"ATILIA\">(\\d+)<.*", "$1"). But you will be more safe with an xml parsing lib and xpath like @Lukas Eder suggests. – nansen Apr 7 '12 at 10:30