I appreciate the practice code. One last question on it. I haven't added much to it. But here I go.
This is what I have
Code:
letters = ABCDEFGHIJKLMNOPQRSTUMWXYZ
StringSplit, letter, letters
Loop, Parse, ClipBoard, `,
data .= "Row " letter%A_Index% " = " (A_LoopField ? A_LoopField : "N/A") "`n"
Sendinput %data%
When I copy something like this:
Quote:
STOP,00270103,0x0001003B09ECC1C4,1991967974
This is the result I get when I type test1.
Quote:
Row A = STOP
Row B = 00270103
Row C = 0x0001003B09ECC1C4
Row D = 1991967974
I want to do 2 things to this.
One I want to alter row's to different names like
Quote:
Timer = STOP
Switch = 00270103
Hex = 0x0001003B09ECC1C4
Number = 1991967974
And second I want to only display certain rows that I want.
Like
Quote:
Timer = STOP
Hex = 0x0001003B09ECC1C4
Any help is appreciated. Thanks.