转义字符不适用于感叹号
Escape character not working for exclamation point
我是 autoHotKey 的新手。我正在尝试为 hw 做一个热字符串 --> Hello, World!
问题是我逃不掉!它只是做 Hello, World —— 没有感叹。我尝试了以下方法:'
::hw::你好,世界!
::hw::你好,世界`!
::hw::你好,世界!
::hw::"Hello, World!"
无济于事。请帮忙。
谢谢
When the Send command or Hotstrings are used in their default
(non-raw) mode, characters such as {}^!+# have special meaning.
Therefore, to use them literally in these cases, enclose them in
braces.
::hw::Hello, World{!}
https://autohotkey.com/docs/commands/_EscapeChar.htm#Escape_Sequences
我是 autoHotKey 的新手。我正在尝试为 hw 做一个热字符串 --> Hello, World! 问题是我逃不掉!它只是做 Hello, World —— 没有感叹。我尝试了以下方法:'
::hw::你好,世界!
::hw::你好,世界`!
::hw::你好,世界!
::hw::"Hello, World!"
无济于事。请帮忙。
谢谢
When the Send command or Hotstrings are used in their default (non-raw) mode, characters such as {}^!+# have special meaning. Therefore, to use them literally in these cases, enclose them in braces.
::hw::Hello, World{!}
https://autohotkey.com/docs/commands/_EscapeChar.htm#Escape_Sequences