How to parse data in a java script file through .net
.
I have an url like this :
http://..../xml/en/file_1.js
The data in my .js
file is like this :
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 example
I want to interpret 20140802
to 02 as day and 08 as month and 2014 as a year
and so on through the whole file ...