Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^3: Setting end position for the regexp engine using LVALUE

by ikegami (Patriarch)
on Sep 19, 2013 at 23:31 UTC ( [id://1054921]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    substr($_, 3, 2) = 'foo';
    
  2. or download this
    substr($_, 3, 2, 'foo');
    
  3. or download this
    my $ref = \substr($_, 3, 2);
    $$ref = 'foo';
    
  4. or download this
    >perl -MDevel::Peek -e"$_ = 'abcdef'; my $ref = \substr($_, 3, 2); Dum
    +p($$ref);"
    SV = PVLV(0x4d3d24) at 0x2cb29c      <--- PVLV
    ...
        PV = 0x2cab94 "abcdef"\0
        CUR = 6
        LEN = 12
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2024-03-28 13:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found