AutoHotKey 添加到数字末尾

AutoHotKey 添加到数字末尾

我正在尝试设置 AutoHotKey 来执行以下操作:如果我输入“34c”,我希望它以任意数字更改为“34°C”。

17.5摄氏度 → 17.5摄氏度

单独使用“c”很容易,但当它位于数字末尾时,我不确定如何使其工作。

答案1

; *: An ending character is not required 
; ?: The hotstring will be triggered even when it is inside another word 

#Hotstring * ? 

::0c::0°C
::1c::1°C
; ...
::9c::9°C

https://autohotkey.com/docs/Hotstrings.htm#Options

答案2

上面的其他答案更适合您的具体使用情况,但这是我转换“度”的热键,这使得可以在句子中的任何位置输入°F 或°C(无论它是否遵循数字温度)。

:?*:deg.::°

相关内容