Help for this page

Select Code to Download


  1. or download this
    my $char_num = ord( $character );
    
    if ( $char_num >= 55 && $char_num <= 90 ) {
    
  2. or download this
    if ( $character =~ /[0-9a-z]/ ) {
     ...
    }