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

Re: Efficient way to verify scalar contents

by BillKSmith (Monsignor)
on Jun 22, 2020 at 14:51 UTC ( [id://11118369]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            :                                             length >=  8
        ;
    }
    
  2. or download this
    sub is_pw_valid {
        my $password = $_[0];
    ...
       my $is_OK = ( length($password) >= $min_length );
       return $is_OK;
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (6)
As of 2024-04-19 10:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found