博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
读取字符串中的数字
阅读量:5013 次
发布时间:2019-06-12

本文共 741 字,大约阅读时间需要 2 分钟。

DateTime 类型:DateTime dt = DateTime.Now;//获取当前时间             int h = dt.Hour;//获取小时             int m = dt.Minute;//获取分钟             int s = dt.Second;//获取秒钟             Console.WriteLine("{0}时{1}分{2}秒!", h.ToString(), m.ToString(), s.ToString());             Console.Read(); string类型:string ss = "0小时0分钟23秒";             string[] str=ss.Split(new string[]{"小时","分钟","秒"},StringSplitOptions.RemoveEmptyEntries);             int h = Convert.ToInt32(str[0]);//小时             int m = Convert.ToInt32(str[1]);//分钟             int s = Convert.ToInt32(str[2]);//秒钟             Console.WriteLine("{0}时{1}分{2}秒!", h.ToString(), m.ToString(), s.ToString());             Console.Read();

转载于:https://www.cnblogs.com/haocc/archive/2012/10/08/2714724.html

你可能感兴趣的文章
关于<form> autocomplete 属性
查看>>
OutOfMemory
查看>>
LeetCode:组合总数III【216】
查看>>
Thinkphp框架回顾(三)之怎么实现平常的sql操作数据库
查看>>
虚函数的效率问题
查看>>
POJ 1860 Currency Exchange(SPFA 判断有无“正”环)
查看>>
广告地址屏蔽
查看>>
收缩SqlServer数据库日记方法
查看>>
每日英语:15 places to find inspiration
查看>>
学习方法--提问
查看>>
【转】每天一个linux命令(3):pwd命令
查看>>
merge-two-sorted-lists
查看>>
MySQL(3)
查看>>
poj1061——扩展gcd水题
查看>>
UVa400.Unix ls
查看>>
POJ 2299 Ultra-QuickSort 归并排序、二叉排序树,求逆序数
查看>>
Educational Codeforces Round 60 (Rated for Div. 2) C. Magic Ship
查看>>
Windows 2008 R2系统开机时如何不让Windows进行磁盘检测?
查看>>
WP7应用开发笔记(18) 本地化与多语言
查看>>
解决 .so文件64与32不兼容问题
查看>>