string a = "hello/!/world";
string b = "/!/";
string c = a.Substring(0, a.IndexOf(b));
Console.WriteLine(c);