in reply to Re^4: hexdump/od/perl question
in thread hexdump/od/perl question

That line doesn't add anything to %db — the next gets executed since the regexp doesn't match — so it's not the source of your problem.

Replies are listed 'Best First'.
Re^6: hexdump/od/perl question
by EvanCarroll (Chaplain) on Aug 10, 2007 at 18:10 UTC
    Yes it does, but not as I indented, good catch again.
    Line: $VAR1 = "STOCK NO\375--------................... D53006\t\r"; Regex: /(.*?)[.-]*\t(.*)/ "STOCK NO\375--------................... D3006" => "\r", (if i store key instead of undef)
    The problem here is the \375, the nature of this task will be to hack the regex until it works, but I must figure out how to remove the \375 first.


    Evan Carroll
    www.EvanCarroll.com