using System; using System.Text.RegularExpressions; public class Test { public static void Main() { var s = "I have a a string \\nThis is a new line\\nThis is another"; Console.Write(Regex.Unescape(s)); } }