public static void Main()
string phone = "+1|1234567890";
string phoneParsed = TrimWords(phone).TrimStart('+').TrimStart('1').Replace("|", string.Empty);
Console.WriteLine("Phone: " + phone + " -> " + phoneParsed);
private static string TrimWords(string source)
if (string.IsNullOrWhiteSpace(source))
var words = source.Split(' ').Select(x => x.Trim()).Where(x => x.Length > 0);
return string.Join(" ", words);