7 lines
113 B
AutoHotkey
7 lines
113 B
AutoHotkey
|
|
string := "Hello,How,Are,You,Today"
|
||
|
|
stringsplit, string, string, `,
|
||
|
|
loop, % string0
|
||
|
|
{
|
||
|
|
msgbox % string%A_Index%
|
||
|
|
}
|