using System;
public class Program
{
public static void Main()
string text = "one\\two\\three";
char separator = char.Parse("\\");
string[] clearText = text.Split(separator);
foreach (string number in clearText)
Console.WriteLine(number);
}
//How many backslashes you must specify as an argument to the method
//Split… in order to split the text by a backslash?
//Example: one\two\three.
//Note: In C# backslash is an escaping character.