Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Problem with Pseudohash

by choroba (Cardinal)
on Feb 02, 2012 at 08:49 UTC ( [id://951377]=note: print w/replies, xml ) Need Help??


in reply to Problem with Pseudohash

In the 2nd style, the part type="technical" is not an attribute, it is just a text. You can find it in $book->{content}, including the newline before it.
Update: Where do you see any pseudohash?

Replies are listed 'Best First'.
Re^2: Problem with Pseudohash
by uday_sagar (Scribe) on Feb 08, 2012 at 13:26 UTC
    if the content has type1="scientific" type2="technical" instead of type="technical", how to get only type1="sceintific"?
      OK, you have a string
      my $content = "\n" . 'type1="scientific" type2="technical"';
      Are you interested in type1 only? Use
      my ($type1) = $content =~ /type1="([^"]+)"/;
      Are you interested whether scientific is present? Use
      my $is_sceintific = $content =~ /type[0-9]*="scientific"/;
        Okay, What I am really interested is that the data should get stored in a hash table irrespective of the position of the attributes of the xml file. (As shown above, STYLE 1 and STYLE 2) Is there any construct/module for this?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (4)
As of 2024-04-19 22:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found