首页 > 代码库 > C#控制台基础 提取出中x年x月x日的年数,月数,日数
C#控制台基础 提取出中x年x月x日的年数,月数,日数
1、代码
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 Program10 {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 }
2、效果
C#控制台基础 提取出中x年x月x日的年数,月数,日数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。