heres is the code where I get strings from a textbox:
string txtS = TextBoxS.Text;
than extract some text with regex:
string[] splitS=Regex.Split(txtS, @"\s(we|tomorow)\s");
text: Today we have a rainy day but maybe tomorow will be sunny.
Now after splitting this gives me an output within a splitting point OutPut: have a rainy day but maybe
But what regular expression to use to get an output including the splitting points or delimiters, so I want this output: we have a rainy day but maybe tomorow I tried some other regular epressions but didn`t find the proper one....

\s(we.+tomorow)\s. See the example in the regex tool here: regex101.com/r/ZVBnZQ/1tomorrowandweappear in a different order or even multiple times? What would you expect then?