AjScript.StringUtilities.SplitText C# (CSharp) Method

SplitText() public static method

public static SplitText ( string text ) : IList
text string
return IList
        public static IList<string> SplitText(string text)
        {
            int lastindex = 0;
            List<string> parts = new List<string>();

            for (Match match = rex.Match(text); match.Success; match = match.NextMatch())
            {
                parts.Add(text.Substring(lastindex, match.Index - lastindex));
                parts.Add(match.ToString().Substring(2, match.Length - 3));
                lastindex = match.Index + match.Length;
            }

            if (lastindex < text.Length)
                parts.Add(text.Substring(lastindex, text.Length - lastindex));
            else if (parts.Count == 0)
                parts.Add(text);

            return parts;
        }
StringUtilities