Since your Mentor has suggested slicing, see if using the String.SubString Method is what he has in mind. I am using a lambda expression to determine the size of the array, if you do not want to use that use a List as in my other example.
static void Main(string[] args)
{
FileStream telData;
List<int> myNumbers = new List<int>();
telData = new FileStream(@"C:\temp\inputdata.txt", FileMode.Open);
StreamReader strmRead = new StreamReader(telData);
string d = "";
string tempdata;
while ((tempdata = strmRead.ReadLine()) != null)
{
d += tempdata;
}
telData.Close();
Console.WriteLine(AverageParsedValues(d, 'H'));
Console.WriteLine(AverageParsedValues(d, 'P'));
Console.WriteLine(AverageParsedValues(d, 'T'));
Console.ReadLine();
}
static double AverageParsedValues(string data, char match)
{
int start;
int end;
int[] value = new int[data.Where(c => c == match).Count()];
int index =0;
int temp;
for (int i = 0; i < data.Length-1; i++)
{
if (data[i] == match)
{
start = data.IndexOf(':', i) + 1;
end = data.IndexOf(':', start);
if (int.TryParse(data.Substring(start, end - start), out temp))
{
value[index] = temp;
index += 1;
}
}
}
return value.Average();
}
Edit: Modified Method do away with the need for Arrays or Lists:
static double AverageParsedValues(string data, char match)
{
int start;
int end;
int value = 0;
double count = 0; //Double so that we return a double not an integer
int temp;
for (int i = 0; i < data.Length-1; i++)
{
if (data[i] == match)
{
start = data.IndexOf(':', i) + 1; // Find Start of Data
end = data.IndexOf(':', start); // Find End of Data
if (int.TryParse(data.Substring(start, end - start), out temp))
{
value += temp;
count += 1;
}
}
}
if (count != 0) //Check for divide by zero
return value / count;
else
return 0;
}