How to extract only quarter name from List<string>

  • Thread starter Thread starter Sudip_inn
  • Start date Start date
S

Sudip_inn

Guest
see my List what kind of data is stored there.

how to extract only quarter name from List<string>

so data would be extracted from 2010 FY to 1Q 2014 and rest will be ignored. thanks

List<string> lst = new List<string>();
lst.Add("Section");
lst.Add("Line Item");
lst.Add("2010 FY");
lst.Add("2011 FY");
lst.Add("1Q 2012");
lst.Add("2Q 2012");
lst.Add("3Q 2012");
lst.Add("4Q 2012");
lst.Add("2012 FY");
lst.Add("1Q 2013");
lst.Add("2Q 2013");
lst.Add("3Q 2013");
lst.Add("4Q 2013");
lst.Add("2013 FY");
lst.Add("1Q 2014");
lst.Add("Cross Cals1");
lst.Add("Cross Cals2");
lst.Add("QC Type");
lst.Add("QC Check");

Continue reading...
 
Back
Top