Hi,

We are receiving XML feed from a service provider for a Match between TeamA & TeamB. In that feed among all the other stuff there is a DateTime node. Sample is below.

Code:
<NFL>
  <DATE>10-08</DATE>
  <WORDCOUNT>0000</WORDCOUNT>
  <DATETIME>st 10-08-06 13:42 et</DATETIME>
  <AWAYTEAM>WASHINGTON</AWAYTEAM>
  <HOMETEAM>NYGIANTS--</HOMETEAM>
</NFL>
All nodes are processed fine but I am having problems understanding the foramt of <DateTime> node's innertext. Can someone help me out on how to parse it and what does the "st" and "et" stands for?

I need to convert the <DateTime> in Eastern Daylight Time (GMT -5, GMT -4 DST)

Any help is appreciated.

Cheers