Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Extract a string from the line

by hippo (Bishop)
on May 29, 2021 at 11:20 UTC ( [id://11133263]=note: print w/replies, xml ) Need Help??


in reply to Extract a string from the line

Where is the mistake in the code ?

In addition to the incorrect regex you have a scoping problem with your $a. This is hidden from you because of your choice of variable name. Never use $a or $b as a general variable name in perl - they are special variables used for sort routines. If you replace your $a with $num for example then your code won't compile:

$ cat scoping.pl #!/usr/bin/env perl use strict; use warnings; my $data = <<'EOD'; <stlib:mem_bit>72</stlib:mem_bit> EOD open my $fh, '<', \$data; while (my $line = <$fh>) { while ( $line =~ /.*st_mem_bit.*(\d+)/g ) { my $num= $1; } } print $num; close $fh; $ ./scoping.pl Global symbol "$num" requires explicit package name at ./scoping.pl li +ne 22. Execution of ./scoping.pl aborted due to compilation errors. $

See Coping with scoping for why this is.

FWIW, I'm happy to add my voice to those suggesting that an XML parser is almost certainly a better approach for this task.


🦛

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11133263]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-25 15:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found