Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Identifying if a variable is the product of a qr//

by demerphq (Chancellor)
on Apr 25, 2002 at 09:49 UTC ( [id://161902]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub blessed_regex{ return bless qr/[a-z]/,'foo' }
    
  2. or download this
    sub blessed_regex{ return bless \qr/[a-z]/,'foo' }
    
  3. or download this
    use strict;
    use warnings;
    ...
    Bless:    foo=SCALAR(0x1a7ef64):    ---
    Rex  :    $VAR1 = qr/(?-xism:[A-Z]o[A-Z])/;
    Bless:    $VAR1 = bless( do{\(my $o = undef)}, 'foo' );
    
  4. or download this
     
    bless \"foo","foo"
    
  5. or download this
    bless qr/somepattern/,"foo";
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-03-29 01:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found