foreach (Match m in Regex.Matches(haystack, needle))
{
int startLine = 1, endLine = 1;
// You could make it to return false if this fails.
// But lets assume the index is within text bounds.
if (m.Index < haystack.Length)
{
for (int i = 0; i <= m.Index; i++)
if (Environment.NewLine.Equals(haystack[i]))
startLine++;
endLine = startLine;
for (int i = m.Index; i <= (m.Index + needle.Length); i++)
if (Environment.NewLine.Equals(haystack[i]))
endLine++;
}
richTextBox1.Text += string.Format(
"\nFound @ {0} Line {1} to {2}", m.Index, startLine, endLine);
Won't actually work if the needle crosses a line, but that's because the regex does not recognize that.
Edit maybe you can replace the endlines in the text with spaces and apply the regex there, this code would still work and if the needle falls over a line it would still be found:
Regex.Matches(haystack.Replace(Environment.NewLine, " "), needle)