Help for this page

Select Code to Download


  1. or download this
    if ($STRING =~ m/[^\x00-\xFF]{1}/)
    {
      ...
    }
    
  2. or download this
    if (length($STRING) > ($STRING =~ tr|\x00-\xFF|\x00-\xFF|))
    {
      ...
    }
    
  3. or download this
    sub isUnicode
    {
    ...
      }
      return 0;
    }