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