使用Loop Parse来读取剪切板中的文本
#SingleInstance, Force
#Persistent
SendMode Input
SetWorkingDir, %A_ScriptDir%
OnClipboardChange("ClipChanged")
return
ClipChanged(Type){
if(Type == 1){
Loop,Parse,Clipboard,`n,`r
{
MsgBox, 4, 行号:%A_Index%,内容:%A_LoopField%. `n`n Contitue?
IfMsgBox, No,Break
}
}
}