string str = "this--is--a--complete--sentence";
string[] tokens = str.Split(new[] { "--" }, StringSplitOptions.None);

Result:

[ “this”, “is”, “a”, “complete”, “sentence” ]