Hello,
I have a 700 MB priv1.edb exchange database which is corrupt, however I have used various tools such as bintext, and hex editors and such and I CAN see the pieces of exchange information plain as day. The info is even in order memory wise!
I notice a unique 7 digit number prior to the individual sections that I would like to extract.
My need is to have a perl, or some other method, script to find that 7 digit number and then extract certain fields after that. I would like to send these extractions to a separate file. Delimited text file would be fine, and then I will import them into excel or whatever.
Can be done???
JM
tia
<>;
while( <> ){
s/^[\S\s]*?([\w\s.]{10})/$
print "$_\n";
}