Hi Guys,
I want to store the values of regex.match in an array but i am getting error.
my code is as follows
string[] subj = null;
for (int f = 1; f <= dir.Length; f++)
{
Match o = Regex.Match(txt1, "section_title='(?<TITLE>.*)'");
subj[f] = o.Groups[1].Value;
}
}
}
can you tell me how can i do this.Thanks