Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: slurped scalar map

by Zaxo (Archbishop)
on Jun 20, 2006 at 14:46 UTC ( [id://556409]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @lines = <$handle>;
    my %record;
    ...
        next unless /^\|  (\w+)  \| (\d+)/;
        $record{$1} = $2;
    }
    
  2. or download this
    my %record = $data =~ /^\|  (\w+)  \| (\d+)/g;
    
  3. or download this
    my $rec1ref = \substr $data, $offset, $len;
    $$rec1ref = $newval;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-04-24 03:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found