Как мне конвертировать время в военное время? - PullRequest
1 голос
/ 16 августа 2011

Я получаю информацию из файла.Время может быть военное или стандартное (AM / PM)

Мне нужно преобразовать время в военное.

Вот несколько примеров времени в CSV-файле

2011-08-16, 2:28:00 PM, 15:28
2011-08-16, 1:21:00 PM, 13:28
2011-08-16, 2:13:00 PM, 16:28

Ответы [ 2 ]

1 голос
/ 17 августа 2011


Во-первых, я не уверен, правильно ли я понял вопрос. Может быть так:

Option Explicit

Const SOURCE_PATH = "C:\source.csv"
Const DEST_PATH = "C:\destination.csv"
Dim oReg, oFso

Set oReg = New RegExp
oReg.IgnoreCase = True
oReg.Global = True
oReg.Pattern = "\b((1[0-2]|[1-9]):[0-5][0-9]:[0-5][0-9] [AP]M)\b"

Function cb_MilTime(a, b, c, d, e)
    cb_MilTime = FormatDateTime(CDate(b), 4)
    'cb_MilTime = Replace(cb_MilTime, ":", "") 'need seperator?
End Function

Set oFso = CreateObject("Scripting.FileSystemObject")

If oFso.FileExists(SOURCE_PATH) Then 
    oFso.OpenTextFile(DEST_PATH, 2, True).Write(oReg.Replace(_
    oFso.OpenTextFile(SOURCE_PATH).ReadAll(), GetRef("cb_MilTime")))
Else 
    Err.Raise 8, "Source path does not exists"
End If

WScript.Echo "File Saved to "& DEST_PATH

Set oFso = Nothing
Set oReg = Nothing
0 голосов
/ 16 августа 2011

Примерно так должно работать:

Const militaryTimeFormat As String = "HH:mm"

' convert to a string in military time
Dim input As String = DateTime.Now.ToString(militaryTimeFormat)

' convert from a string in military time
Dim time As DateTime = DateTime.ParseExact(input, militaryTimeFormat, Nothing)
...