I have a script file containing 1000 lines of data and some of the lines contain some date string in the form of dd/mm/yyyy hh:mm:ss format. My objective is to find out the lines which contain a date of the following pattern
"Value=10/08/2010 13:39:37", ENDITEM,
Some example lines which contains dates in the script are
"Name=s_1_1_81_0", "Value=10/08/2010 13:39:37", ENDITEM,
// {Siebel_Parse_Web_Page72_S_BC2_S40_R02_F30} = "07/27/2010" (Some Date)
Number0*12*Install Date19*08/24/2010 00:00:0015*Unit of Measure9*Per Month19*To Service
I want to find out ONLY those lines similar to the first example not the other ones, i.e. the lines containing date string which starts with "Value= and ends with ",
Can you guys please help me out here?
PS: I want the code in C# please.