string responser = contents.Substring(f + firstTag.Length, g - f - firstTag.Length);
string dateTag = "בתאריך";
string wroteResponser = ":כתב";
int i = responser.IndexOf(dateTag);
int p = responser.IndexOf(wroteResponser );
string test = responser.Substring(i + dateTag.Length, p + wroteResponser.Length - i - dateTag.Length);
In responser i have: כתב: רוטרית בתאריך: 26.06.14 שעה: 22:58 I want to remove from it this part: כתב: רוטרית
So in the end i will end with this only: בתאריך: 26.06.14 שעה: 22:58 The way im doing it p is -1 all the time and also test i think is wrong.