I was at directory.io and i am encountering this problem
Private Key Address Compressed Address
+ 5HpHagT65TZzG1PH3CSu63k8DbpvD8s5ip4nEB3kEsreAnchuDf 1EHNa6Q4Jz2uvNExL497mE43ikXhwF6kZm 1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH
...
If i want to copy only the bitcoin address field then all the fields are being copied
So is there any program or trick to copy just the middle row??
If you're using Unix or a Unix-like OS (OSX, Linux, BSD, etc) then "cut". Something like...
cat NAME_OF_FILE | cut -f 3
(ConcATenate NAME_OF_FILE, piping the result into CUT, and selecting only the third field)That's from memory, you might need to specify the delimiter, and you'll need to either remove the first line, ignore it somehow, of maybe cut on your OS has a "specify that the first line is a header line". It's non-destructive, though, so even if it doesn't work it won't do any damage and you can play around with it until it works as you need.
If you're on Windows there's probably a similar cmd.exe or Powershell spell you can use. Or you could install Cygwin and use "cut" (and other POSIX tools) on Windows.