using System.Collections.Generic;
using System.Text.RegularExpressions;
public static void Main()
string data = "Hello****wide****world";
string[] words = Regex.Split(data, @"(\*{4})");
List<string> result = words.ToList();
foreach (var item in result)