2013-02-22 250 views
3

我試圖檢查是否Now時間介於兩者之間,比方說,13:00和17:00。我不認爲_Datediff函數(使用_dateadd()_NowTimeCalc())將工作。如何檢查現在時間是否在AutoIt的給定時間

我缺少AutoIt有一些庫函數嗎?或者我必須編寫一個手動函數來比較@Hour@min

我做這樣的事情:

Func CheckTime($sStart, $sEnd) 
    $s = StringSplit($sStart, ":") 
    $e = StringSplit($sEnd, ":") 
    $s[1] = Int($s[1]) 
    $s[2] = Int($s[2]) 
    $e[1] = Int($e[1]) 
    $e[2] = Int($e[2]) 
    $result = False 

    If $s[0] <= 0 And $e <= 0 Then 
     ConsoleWrite("Wrong Time Format") 
     Exit 
    EndIf 

    If $s[1] <= @HOUR And $e[1] >= @HOUR Then 
     If @HOUR >= $s[1] And @MIN > $s[2] Then 
      If @HOUR <= $e[1] And @MIN < $e[2] Then 
       $result = True 
      EndIf 
     EndIf 
    EndIf 
    Return $result 
EndFunc ; ==>CheckTime 

現在正常工作時,開始時間<結束時間,但我在找的是一些好的方法,而不是手動檢查。

回答

3

使用標準的用戶定義函數(UDF),您可以嘗試使用這樣的:

#region ;************ Includes ************ 
#include <Array.au3> 
#include <Date.au3> 
#endregion ;************ Includes ************ 


ConsoleWrite(_timeBetween(@HOUR & ':' & @MIN, '10:05', '12:09')) 

Func _timeBetween($cTime, $sTime, $eTime) 
    If Not _DateIsValid('2000/01/01 ' & $cTime) Then Return -1 
    If Not _DateIsValid('2000/01/01 ' & $sTime) Then Return -2 
    If Not _DateIsValid('2000/01/01 ' & $eTime) Then Return -3 

    ;~ ConsoleWrite(_DateDiff('s', '2000/01/01 ' & $cTime & ':00', '2000/01/01 ' & $sTime & ':00') & @CRLF) 
    ;~ ConsoleWrite(_DateDiff('s', '2000/01/01 ' & $cTime & ':00', '2000/01/01 ' & $eTime & ':00') & @CRLF) 

    If _DateDiff('s', '2000/01/01 ' & $cTime & ':00', '2000/01/01 ' & $sTime & ':00') < 0 And _ 
     _DateDiff('s', '2000/01/01 ' & $cTime & ':00', '2000/01/01 ' & $eTime & ':00') > 0 Then 

     Return 1 
    Else 
     Return 0 
    EndIf 

EndFunc ; ==>_timeBetween 
+0

謝謝,比我預想的要容易 – XPecto 2013-02-23 02:34:23

0

一個爲我的作品簡單的版本 - 只用字符串比較HH:mm格式

#include <Date.au3> 

Func _timeBetween($sTime, $eTime) 
    Return (_NowTime(4) < $eTime) And (_NowTime(4) > $eTime) 
EndFunc ; ==>_timeBetween 


MsgBox(0, "daytime","is day = " & _timeBetween("08:00"."23:00")) 
+0

不錯,但是這對於穿越午夜不起作用,例如時間爲22:00至02:00 – scibuff 2017-05-21 01:50:30

相關問題