Help for this page

Select Code to Download


  1. or download this
    sub is_valid_re {
        eval { qr/$_[0]/ };
        return $@ ? 'NO' : 'YES';
    }
    
  2. or download this
    sub is_valid_re { eval { qr/$_[0] } ? 'YES' : 'NO' }
    
  3. or download this
    sub is_valid_re { eval { qr/$_[0] } }
    print is_valid_re('abc') ? 'YES' : 'NO';
    
    sub human_bool { shift ? 'YES' : 'NO' }
    print human_bool(is_valid_re('abc'));