deburr-0.1.0.1: Convert Unicode characters with burrs to their ASCII counterparts.

Safe HaskellSafe
LanguageHaskell2010

Text.Deburr

Description

Deburr A small package exposing the deburr function, which converts unicode characters with burrs (umlauts, accents, etc) to their ASCII counterparts. The function intelligently handles capitals and some other edge cases.

Synopsis

Documentation

deburr :: String -> String Source #

Deburr a string, removing umlauts, accents, etc.

>>> deburr "Jeg spiser brød."
"Jeg spiser brod."