字符串是否为空

1
2
3
4
if (var = "")
{

}

字符串拼接

  • 表达式方法
1
Var := "The color is " . FoundColor
  • 传统方法
1
Var = The color is %FoundColor%

参考:

  1. http://www.autohotkey.com/docs/Variables.htm#Operators

留言