Help for this page

Select Code to Download


  1. or download this
        $_value =~ s/’/’/g;        # typed from keyboard
        $_value =~ s/%92/’/g;      # uri encoding
        $_value =~ s/’/’/g;  # should never work
    
  2. or download this
    $_value =~ s/\x92/’/g;