C#实现判断⼀个时间点是否位于给定时间区间的⽅法本⽂实例讲述了C#实现判断⼀个时间点是否位于给定时间区间的⽅法。分享给⼤家供⼤家参考。具体如下:
本⽂中实现了函数
复制代码代码如下:
static bool isLegalTime(DateTime dt, string time_intervals);
给定⼀个字符串表⽰的时间区间time_intervals:
1)每个时间点⽤六位数字表⽰:如12点34分56秒为123456时间正则表达式java
2)每两个时间点构成⼀个时间区间,中间⽤字符'-'连接
3)可以有多个时间区间,不同时间区间间⽤字符';'隔开
例如:"000000-002559;030000-032559;060000-062559;151500-152059"
若DateTime类型数据dt所表⽰的时间在字符串time_intervals中,
则函数返回true,否则返回false
⽰例程序代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//使⽤正则表达式
using System.Text.RegularExpressions;
namespace TimeInterval
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(isLegalTime(DateTime.Now,
"000000-002559;030000-032559;060000-062559;151500-152059"));
Console.ReadLine();
}
/// <summary>
/// 判断⼀个时间是否位于指定的时间段内
/// </summary>
/// <param name="time_interval">时间区间字符串</param>
/
// <returns></returns>
static bool isLegalTime(DateTime dt, string time_intervals)
{
//当前时间
int time_now = dt.Hour * 10000 + dt.Minute * 100 + dt.Second;
//查看各个时间区间
string[] time_interval = time_intervals.Split(';');
foreach (string time in time_interval)
{
//空数据直接跳过
if (string.IsNullOrWhiteSpace(time))
{
continue;
}
//⼀段时间格式:六个数字-六个数字
if (!Regex.IsMatch(time, "^[0-9]{6}-[0-9]{6}$"))
{
Console.WriteLine("{0}:错误的时间数据", time);
}
string timea = time.Substring(0, 6);
string timeb = time.Substring(7, 6);
int time_a, time_b;
/
/尝试转化为整数
if (!int.TryParse(timea, out time_a))
{
Console.WriteLine("{0}:转化为整数失败", timea);
}
if (!int.TryParse(timeb, out time_b))
{
Console.WriteLine("{0}:转化为整数失败", timeb);
}
//如果当前时间不⼩于初始时间,不⼤于结束时间,返回true
if (time_a <= time_now && time_now <= time_b)
{
return true;
}
}
//不在任何⼀个区间范围内,返回false
return false;
}
}
}
当前时间为2015年8⽉15⽇ 16:21:31,故程序输出为False 希望本⽂所述对⼤家的C#程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。