I am trying to do a string comparison between strings in two text files. The text is produced by bintext application reading from .exe and produce files with format such as below :
File pos Mem pos ID Text
======== ======= == ====
00000000004D 00000040004D 0 !This program cannot be run in DOS mode.
0000000000A0 0000004000A0 0 Rich!
I tried to do a line.split with a white space, but as a result the last column content is also separated with white space. Instead of [!this program cannot be run in dos mode] I got [!this,program,cannot,be,run,in,DOS,Mode,.]
Is there any simple way to put in the array the entire column 3 from the txt file without splitting it ?
split's count parameter?