I am receiving an XML, in which some fields have date values, but they are 'encrypted', and I do not know how to convert.
examples:
Input:
<effectiveEndDate>/Date(253402214400000)/</effectiveEndDate>
<code>002956</code>
<lastModifiedDateTime>/Date(1574082723000+0000)/</lastModifiedDateTime>
Output Expected:
<effectiveEndDate>9999-12-31T00:00:00.000GMT</effectiveEndDate>
<code>002956</code>
<lastModifiedDateTime>2019-11-12T17:18:39.000GMT</lastModifiedDateTime>
Note that its an example, of how I want the date field, it's not the real converted values.
Can anyone illuminate the way?