string sol =string.Empty;
MatchCollection m = Regex.Matches(textBox2.Text, @"(?<=HK)\d+(?=\s)|(?<=\s*\d+\.)[^\s]+(?=\s)", RegexOptions.IgnoreCase);
for (int i =1; i <=Convert.ToInt32(m[0].Value); i++)
{
sol += m[i].Value + Environment.NewLine;
}
this.textBox1.Text = sol;