Help for this page

Select Code to Download


  1. or download this
    if (3 <= scalar grep { $str =~ /$_/ } ( # Match at least 3 of:
        qr/^.*(?=.{10,})(?=.*\d).*$/,
    ...
    ) {
        # Do something.
    }