4 lines
79 B
AutoHotkey
4 lines
79 B
AutoHotkey
|
|
string = mary,had,a,little,lamb
|
||
|
|
Loop, Parse, string, `,
|
||
|
|
MsgBox %A_LoopField%
|