如何从变量String解析DateTime SubString

时间:2009-09-16 21:11:57

标签: c# .net

我有一个像这样的字符串:

"WAIT_UNTIL;SYSTEM_TIME >= Di 15 Sep 2009    23:00:21 and IgnKeyPos ==3"

或类似的东西

"IF;Thermal >=20 and SYSTEM_TIME >= Tue 16 Sep 2009    23:00:21 "

我只需要提取时间和日期部分,以便我可以像以后一样使用它:

TimeThen = DateTime.Parse("Di 15 Sep 2009    23:00:21");

我该如何开始?

4 个答案:

答案 0 :(得分:3)

这会匹配,虽然对预期格式有更多反馈,但可以增强。目前它在日期/时间部分之间至少接受1个空格。

string input = "IF;Thermal >=20 and SYSTEM_TIME >= Tue 15 Sep 2009    23:00:21 ";
string pattern = @"[A-Z]+\s+\d+\s+[A-Z]+\s+\d{4}\s+(?:\d+:){2}\d{2}";
Match match = Regex.Match(input, pattern, RegexOptions.IgnoreCase);

if (match.Success)
{
    string result = match.Value;
    DateTime parsedDateTime;
    if (DateTime.TryParse(result, out parsedDateTime))
    {
        // successful parse, date is now in parsedDateTime
        Console.WriteLine(parsedDateTime);
    }
    else
    {
        // parse failed, throw exception
    }
}
else
{
    // match not found, do something, throw exception
}

答案 1 :(得分:1)

考虑使用Regular Expressions

以下是在C#中使用它们的一些信息:

以下是示例用法

Regex dateTimeRegex = new Regex("\w<=(?<ParsedDateTime>YOUR REGEX GOES HERE)");

if(match.Success && match.Groups["ParsedDateTime"].Success)
{
   string parsedDateTime = match.Groups["ParsedDateTime"].Value;

   // process your parsed value here
}

答案 2 :(得分:0)

(?<trash>.*?)<?<arrow>\s\>\=\s)(?<dow>\w{2,3})\s*(?<day>\d{1,2})\s*(?<month>\w{3})\s*(?<time>\d{1,2}\:\d{1,2}\:\d{1,2}).*

第一个这样的正则表达式是什么?

答案 3 :(得分:0)

private static DateTime ExtractDateTime(string format)
{
    int length = format.Length;
    for (int startIndex = 0; startIndex < length; startIndex++)
    {
        for(int subLength = length - startIndex; subLength > 0; subLength--)
        {
            string substring = format.Substring(startIndex, subLength);
            DateTime result;
            if (DateTime.TryParse(substring, out result))
            {
                return result;
            }
        }
    }
    return DateTime.MinValue;
}