fal*_*all 3 string format autohotkey numeric converter
FormatTime, CurrentMinute , , m将当前分钟分配给variable %CurrentMinute%,其值是一个字符串,而不是数字。我想对价值进行一些计算%CurrentMinute%,那么如何将其转换为数字呢?
感谢您的任何帮助!
AutoHotkey会根据需要自动转换数字和字符串。
FormatTime, CurrentMinute,, m
NextMinute := CurrentMinute + 1
Run Code Online (Sandbox Code Playgroud)