この例だとスペースとハイフンで分割している
string mes = "hello world"; string[] split = mes.Split(new Char[] { ' ', '-' }); foreach (string s in split) { if (s.Trim() != "") { Console.WriteLine(s); } }
この例だとスペースとハイフンで分割している
string mes = "hello world"; string[] split = mes.Split(new Char[] { ' ', '-' }); foreach (string s in split) { if (s.Trim() != "") { Console.WriteLine(s); } }