in reply to Re: Simple regex
in thread Simple regex
i want to print the hexa decimal string whitch is returned by objdump but my regex do the contrary !#!perl -w # use strict; # # Hashes my %struct_compilation = ( "objdump" => "%s -j .text -s -z %s", ); my %compilation = ( "objdump" => "", ); my %return = ( "objdump" => "", ); my $path = "D:/Progs/Programmation/Dev-Cpp/bin/"; my %compiler = ( "objdump" => $path . "objdump.exe", ); # # Main if( @ARGV < 1 ) { exit( 0 ); } my $src = $ARGV[0]; $compilation{"objdump"} = sprintf( $struct_compilation{"objdump"}, $co +mpiler{"objdump"}, $src ); $return{"objdump"} = `$compilation{"objdump"}`; $return{"objdump"} =~ s/[0-9a-f]{4}//g ; print $return{"objdump"};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Simple regex
by Anonymous Monk on Jan 19, 2005 at 14:00 UTC | |
by Isothop (Acolyte) on Jan 19, 2005 at 14:04 UTC | |
|
Re^3: Simple regex
by Random_Walk (Prior) on Jan 19, 2005 at 13:59 UTC |