2012-10-28 45 views
2

FormatTime, CurrentMinute , , m將當前分鐘分配給變量%CurrentMinute%,其值是一個字符串,而不是數字。我想對%CurrentMinute%的值做一些計算,那麼我怎麼才能將它轉換爲數字?如何將字符串轉換爲autohotkey中的數字?

感謝您提前提供任何幫助!

回答

2

AutoHotkey根據需要自動轉換數字和字符串。

FormatTime, CurrentMinute,, m 
NextMinute := CurrentMinute + 1 
+0

謝謝你'CurrentMinute:= CurrentMinute + 0'解決了這個問題! – fall

相關問題