M
microsoft.news.com
i have a dataset and the first row of the dataset is empty. It looks like
this
<NewDataSet>
<ImportData />
<ImportData>
<State>Delaware</State>
<City>Dover</City>
</ImportData>
<ImportData>
<State>New York</State>
<City>Fishkill</City>
</ImportData>
<ImportData>
<State>Delaware</State>
<City>Wilmington</City>
</ImportData>
<ImportData>
<State>New York</State>
<City>Syracuse</City>
</ImportData>
</NewDataSet>
How can I read this skip the first <ImportData> tag since it will always be
blank, then group the states so i see
Delaware Dover
Wilmington
New York Fishkill
Syracuse
this
<NewDataSet>
<ImportData />
<ImportData>
<State>Delaware</State>
<City>Dover</City>
</ImportData>
<ImportData>
<State>New York</State>
<City>Fishkill</City>
</ImportData>
<ImportData>
<State>Delaware</State>
<City>Wilmington</City>
</ImportData>
<ImportData>
<State>New York</State>
<City>Syracuse</City>
</ImportData>
</NewDataSet>
How can I read this skip the first <ImportData> tag since it will always be
blank, then group the states so i see
Delaware Dover
Wilmington
New York Fishkill
Syracuse