I have many records from a database that have a field with the following appended:
...blah blah. <edited><editID>variable-text-here</editID><editDate>variable-date-here</editDate></edited>
In my C# code I want to get the variable-text and variable-date out of each, to use within my program.
What would be the best/most efficient way of doing this?
I would use a regular expression, something like:
Hope it helps!