Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

The hash structure is generated, so I can't change the structure of it, just extract it

Sometimes you just need to take out the chainsaw.

This assumes your file is just as you put it, parts always in quotes called hash1, hash2, hash3, there always are keys in quotes called paramA and paramB, and the values of those keys are always in quotes.

#!/usr/local/bin/perl use strict; use warnings; Generate(); sub Generate { Process_File('hash.pm'); } sub Process_File { my $filename = shift; open(my $fh, '<:encoding(UTF-8)', $filename) or die "Could not open file '$filename' $!"; my $file=''; while (my $line=<$fh>) { $file.=$line; } for my $n (1..3) { if ($file =~ m/\'hash$n\'.+?\{(.*?)\}/ms) { my $part=$1; my ($typ_s) = $part=~/\'paramA\'.*?\=\>.*?\'(.*?)\'/ms; my ($paramb)= $part=~/\'paramB\'.*?\=\>.*?\'(.*?)\'/ms; print "n $n typ_s $typ_s paramb $paramb\n"; } # part } # n }
Result
D:\goodies\pdhuck\down1\perl\monks>perl 1185438.pl n 1 typ_s 00 paramb FF n 2 typ_s 01 paramb 02 n 3 typ_s 00 paramb 03
Im sure others can improve on this too.


In reply to Re^3: Accessing the hash name in perl by huck
in thread Accessing the hash name in perl by Sonali

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-20 01:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found