I have several delimiters. For example {del1, del2, del3 }.
Suppose I have text : Text1 del1 text2 del2 text3 del3
I want to split string in such way:
- Text1 del1
- text2 del2
- text3 del3
I need to get array of strings, when every element of array is texti deli.
How can I do this in C# ?
String.Splitallows multiple split-delimeters. I don’t know if that fits your question though.Example :
Edit: you can use a regex to keep the delimeters.