|
The original data looked like this:
<title>Large Animals</title> <address>Dallas, TX 23071</address>
The Requirement was to put the name of the state before every section title
<title>Texas Large Animals</title>
One solution
<title>Large Animals</title> <address><city>Dallas</city>, <state>TX</state> 23071</address>
|