Contact: aviboots(AT)netvision.net.il
41,161 questions
53,653 answers
573 users
using System; class Program { static void Main() { string str = "***---=====c# c c++*******========"; char[] characters = { '*', '-', '=' }; str = str.Trim(characters); Console.WriteLine(str); } } /* run c# c c++ */