1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
7 namespace ConsoleApplication2
8 {
9 class Program
10 {
11 static void Main(string[] args)
12 {
13 string nowTime = "2016年10月07日";
14 string[] time = nowTime.Split(new char[] { ‘年‘, ‘月‘, ‘日‘ }, StringSplitOptions.RemoveEmptyEntries);
15 string year = time[0];
16 string mOnth= time[1];
17 string day = time[2];
18
19 foreach (var item in time)
20 {
21 Console.WriteLine(item);
22 }
23 {
24
25 }
26
27 Console.ReadKey();
28 }
29
30 }
31
32 }