0

我知道?在热字串(例如:?:btw::by the way)中使用以允许热字串在字母数字字符后触发。但是,有没有办法让它在前面有字母数字字符时才触发?例如,它不会触发#btwor@btw:btw类似。

4

2 回答 2

0

RegEx Powered Dynamic Hotstrings可以为您执行此操作。将上述库保存在与您的脚本相同的目录中并运行以下命令:

#Include DynamicHotstrings.ahk

hotstrings("[\w]btw", "btw") ; [\w] is the regular expression for a single character word
Return

btw:
    SendInput, by the way
Return
于 2013-06-25T15:09:59.150 回答
0

我唯一能想到的就是hotstring为每个字母数字字符制作一个。

:?:abtw::by the way
:?:bbtw::by the way
:?:cbtw::by the way
.
.
.
:?:Ybtw::by the way
:?:Zbtw::by the way
:?:1btw::by the way
.
.
.
于 2013-06-25T09:53:34.123 回答