using System.Collections.Generic;
using System.Text.RegularExpressions;
public static void Main()
string hello = "<.., <.. ,<..Hello, <..World, <..Hello World<.. , ";
var text = hello.Split(',')
.Select(x => Regex.Replace(x, "<..", "\n\r"))
.Where(x => !string.IsNullOrEmpty(x))
Console.WriteLine(string.Join(string.Empty,text));