Just to expand on Bucky's sample, and as he mentioned you can split on a series of characters...In this case <test>
string[] words;
string text = "First Item<test>Second item<test>Third item<test>Forth item";
words = System.Text.RegularExpressions.Regex.Split(text, "<test>");