Help for this page

Select Code to Download


  1. or download this
    use Text::Unaccent;
    $unaccented = unac_string($charset, $text);
    
  2. or download this
    use utf8;
    use Text::Unidecode;
    $unaccented = unidecode($text);
    
  3. or download this
    use Text::StripAccents;
    $unaccented = stripaccents($text);