in reply to Re^2: Simple regex
in thread Simple regex

Replace
$return{"objdump"} =~ s/[0-9a-f]{4}//g;
with
$return{"objdump"} = join("",$return{"objdump"} =~ /[0-9a-f]{4}/g)

Replies are listed 'Best First'.
Re^4: Simple regex
by Isothop (Acolyte) on Jan 19, 2005 at 14:04 UTC
    thanks to you ! it works :)