I am processing data in a datagrid and want to filter out any rows which do not contain specific text. Is it possible to do this? Code below is where I am reading the data. I don't want to read/process lines which do not contain the word "INTEREST"
while (fileReader.Peek() != -1)
                        {
                            fileRow = fileReader.ReadLine();
                            fileRow = fileRow.Replace("\"", "");
                   //       fileRow = fileRow.Replace("-", "");
                            fileDataField = fileRow.Split(delimiter);
                            fileDataField = fileRow.Split(',');
                            gridLGTCash.Rows.Add(fileDataField);
                        }
                        fileReader.Close();
 
     
     
    