EDN Admin
Well-known member
I have this xml file
<Group1><br/>
<Client ID="ABC "2010-02-01 01:10:00"</Client><br/>
<Client ID="GHI "2011-05-05 05:50:00"</Client><br/>
</Group1>
what would the xpath be if I want to get the date for GHI
right now I have
//Client[@ID="GHI"] but this returns "2011-05-05 05:50:00n"
I would like just the string "2011-05-05 05:50:00" is this possible?
View the full article
<Group1><br/>
<Client ID="ABC "2010-02-01 01:10:00"</Client><br/>
<Client ID="GHI "2011-05-05 05:50:00"</Client><br/>
</Group1>
what would the xpath be if I want to get the date for GHI
right now I have
//Client[@ID="GHI"] but this returns "2011-05-05 05:50:00n"
I would like just the string "2011-05-05 05:50:00" is this possible?
View the full article