Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: lhs substr(): refs vs. scalars

by BrowserUk (Patriarch)
on Oct 08, 2005 at 17:06 UTC ( [id://498434]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @decoded = unpack '...', substr $bigscalar, $offset, $size;
    
    ...
    
    # or
    substr( $bigscalar, $offset, $size ) = pack '...', @newValues;
    
  2. or download this
    my $replacement = pack '...', @newValues;
    
    substr( $bigScalar, $offset, length $replacement ) = $replacement;
    
  3. or download this
    ## Create a scalar
    perl> $bigScalar = 'the quick brown fox jumps over the laxy dog';;
    ...
    ## The typo is now corrected.
    perl> print $bigScalar;;
    the quick brown fox jumps over the lazy dog
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (5)
As of 2024-04-23 18:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found