Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Regular expressions: interpolate the variable in the value of the number of repetitions for the group

by 0day (Sexton)
on Aug 02, 2013 at 23:02 UTC ( [id://1047667]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    open (my $file, '<', 'data.bin');
    binmode $file;
    ...
    $binary_data =~ /(.)(.){(?{unpack 'H*', $1})}/; # ?
    # or may be
    /(.)(?{unpack 'H*', $1})(.){$^R}/; # ???
    
  2. or download this
    /(.)((??{'.' x $1}))/;
    
  3. or download this
    $_ = "3aaaa\nbbbb\nccccc\nddddd";
    /(\d)((??{'.*?\n' x $1}))/;
    print $2; # aaaa\nbbbb\nccccc\n
    # how to assign a value aaaa\n of $3, bbbb\n -> $4 etc ?
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1047667]
Approved by rjt
Front-paged by kcott
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-03-19 02:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found