0

我需要解析一个时间戳值,它既可以作为 NTP 时间给出,也可以作为带有单位字符的短时间字符串给出。

例子:

time = 604800 (can cast to long, easy!)

或者

time = 7d

对于这种情况,.NET 中是否有内置的日期时间解析功能?还是我必须寻找任何不是数字的字符(可能使用正则表达式?)。

预计会出现以下字符:

  d - days 
  h - hours 
  m - minutes 
  s - seconds
4

1 回答 1

1

这种基本操作不需要正则表达式。

public static int Process(string input)
{
    input = input.Trim();                                          // Removes all leading and trailing white-space characters 

    char lastChar = input[input.Length - 1];                       // Gets the last character of the input

    if (char.IsDigit(lastChar))                                    // If the last character is a digit
        return int.Parse(input, CultureInfo.InvariantCulture);     // Returns the converted input, using an independent culture (easy ;)

    int number = int.Parse(input.Substring(0, input.Length - 1),   // Gets the number represented by the input (except the last character)
                           CultureInfo.InvariantCulture);          // Using an independent culture

    switch (lastChar)
    {
        case 's':
            return number;
        case 'm':
            return number * 60;
        case 'h':
            return number * 60 * 60;
        case 'd':
            return number * 24 * 60 * 60;
        default:
            throw new ArgumentException("Invalid argument format.");
    }
}
于 2013-07-23T14:19:27.487 回答