- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- // 文字列の分割
- String[] strList = "リンゴ,バナナ,イチゴ".Split(',');
-
- Console.WriteLine("\"リンゴ,バナナ,イチゴ\".Split(',')");
- Console.WriteLine("\n【結果】");
- foreach (String str in strList)
- {
- Console.WriteLine(str);
- }
-
- Console.ReadLine();
- }
- }
- }
|