AutoHotKey(오토핫키) 설명서 Arrays
Arrays
AutoHotkey에는 Arrays형 변수는 없고,StringSplit(이)나WinGet등의 커멘드에서는, Arrays 대신에 마지막에 숫자가 붙은 변수에 결과를 대입한다.
변수명의 뒤로 요소 번호(1...요소수)(을)를 더한 이름의 변수가 Arrays의 각 요소가 된다.
요소수는,WinGet그럼 지정한 이름의 변수,StringSplit그럼 지정한 이름에 「0」(을)를 붙인 이름의 변수에 대입된다.
Arrays의 전요소에 대해서 처리를 실시하고 싶은 경우는,StringTrimLeft커멘드로 원래의 변수명의 지정에 루프 변수를 묻는 것으로 각 요소를 꺼낼 수 있다.
Example
Colors = red|green|blue StringSplit,ColorArray,Colors,| Loop,%ColorArray0% { this_color:=ColorArray%a_index% MsgBox, Color number %a_index% is %this_color%. }
'AutoHotKey > misc' 카테고리의 다른 글
AutoHotKey(오토핫키) 설명서 FontsStandard (0) | 2014.08.14 |
---|---|
AutoHotKey(오토핫키) 설명서 ErrorLevel (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 Color (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 CLSID일람 (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 Clipboard (0) | 2014.08.14 |