I want to split a text by different words and not by periods. Here is a code I tried:
string StringFromTheInput = TextBox1.Text;
string[] splichar1 = Regex.Split(StringFromTheInput, @"(?<=[\because\and\now\this is])");
I want to use these words or phrases as delimiter in text instead of period mark, this is an example what output I need:
Text: Sentence blah blah blahh because bblahhh balh and blahhh
Output: because bblahhh balh and blahhh
another example-
Text: bla now blahhh
Output: now blahhh