Looking for a way to extract data from a JavaScript file using .NET.
Consider the following URL:
http://..../xml/en/file_1.js
The content of the .js file is as follows:
getdate(20140802,'','','',10,5);
getdate(20140802,'','','',10,5);
getdate(20140727,'','','',10,5);
getdate(20140727,'','','',10,5);
getdate(20140723,'','','',10,5);
getdate(20140723,'','','',10,5);
For instance, I aim to decode 20140802
into
02 as day and 08 as month and 2014 as a year
, throughout the entire file...