I am working with an XML string that contains data about the capitals of different countries. How can I extract the capital values for Washington, DC and Paris from this XML?
<Country>
<USA>
<Capital>"Washington, D.C"</Capital>
</USA>
<France>
<Capital>"Paris"</Capital>
</France>
</Country>