I am trying to filter specific information to variable via parsing the clipboard but I need some help doing this.
Loop, parse, clipboard, `n, `r
{
If A_LoopField contains XYZ
;Copy whatever text is found 2 or 3 lines below into file but continue on.
}
Here is an example of whats
Clipboard = (
- Line 1 - Blank
- Line 2 - XYZ Some text telling my script to copy line 4 and so on
- Line 3 - Blank
- Line 4 - "Text to be copied"
- Line 5 - Blank
- Line 6 - XYZ Some text telling my script to copy lines 8 and so on
- Line 7 . . . )