Help for this page

Select Code to Download


  1. or download this
    my $is_ascii = $string !~ /[^\x00-\x7F]/;
    
  2. or download this
    my $is_ascii = $string =~ /^[\x00-\x7F]*\z/;