now i have a richtextbox1 that has alot of text
what i want to achieve is search for as example "First" and "Second" in the textbox then get the strings located between them
i tried to use this but its hell slow
while((a9 = richtextbox1.Text) != null)
{
if ( line.Contains("word") )
{
string theline = line;
}
counter++;
}
what i want to achieve is search for as example "First" and "Second" in the textbox then get the strings located between them
i tried to use this but its hell slow
while((a9 = richtextbox1.Text) != null)
{
if ( line.Contains("word") )
{
string theline = line;
}
counter++;
}