in reply to Binary buffer - substr

(my $out_packet = $packet_dump) =~ s/^.*?(?=\x16\x03\x01\x01)//s;
edit: added /s modifier as pointed out by 7stud

Dave.

Replies are listed 'Best First'.
Re^2: Binary buffer - substr
by highland7 (Novice) on Jan 13, 2013 at 23:08 UTC
    Thanks, it's working !!!
Re^2: Binary buffer - substr
by highland7 (Novice) on Jan 14, 2013 at 00:03 UTC
    One more question: How can i find index number for specific binary string ? I would like to find out from which byte that specific 4 bytes appear (/x16/x03/0x1/0x0) Thanks
      index($packet_dump, "\x16\x03\x01\x01")

      Dave.