多行內容的字串設定

autohotkey具有多行內容的字串設定語法。當需要時,蠻好用的

基本語法

myString=
(
string content here:first line
string content here:second line
)

 

If you want to have "%" characters in a continuation section, you must either escape each "%" with a "`", or specify that "%" characters are to be treated literally, like this: [source]

urlList =
( %
http://www.something.com/some[color=red]%20[/color]thingmore?justaquery=4
http://www.something.com/somethingmore?justaquery=4
http://www.something.com/somethingmore?justaquery=4
)