in reply to Re^3: XML data extraction
in thread XML data extraction
my $name = "greenfield (Glossary) (100)"; my $appID; foreach ( $name =~ /\((.*?)\)/ ) { $appID = $1; } print $appID;
above code gives me output : Glossary
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: XML data extraction
by hippo (Archbishop) on Oct 12, 2017 at 10:34 UTC | |
|
Re^5: XML data extraction
by haukex (Archbishop) on Oct 12, 2017 at 10:35 UTC |