Retrieving an Element of an Array: Difference between revisions

Content added Content deleted
(Slate implementation)
m (→‎{{header|AutoHotkey}}: Minor indentation and casing edit)
Line 76: Line 76:
<lang autohotkey>string = abcde
<lang autohotkey>string = abcde
StringSplit, array, string
StringSplit, array, string
Loop,% array0
Loop, % array0
MsgBox,% array%A_Index%</lang>
MsgBox, % array%A_Index%</lang>


=={{header|AWK}}==
=={{header|AWK}}==