1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
# Text-ICU: Comprehensive support for string manipulation
This package provides the Data.Text.ICU library, for performing
complex manipulation of Unicode text. It provides features such as
the following:
* Unicode normalization
* Conversion to and from many common and obscure encodings
# Prerequisites
This library is implemented as bindings to the well-respected [ICU
library](http://www.icu-project.org/), which is not included. The versions
of ICU currently supported are 4.0 and newer.
# Get involved!
Please report bugs via the
[bitbucket issue tracker](http://bitbucket.org/bos/text-icu/issues).
Master [Mercurial repository](http://bitbucket.org/bos/text-icu):
* `hg clone http://bitbucket.org/bos/text-icu`
There's also a [git mirror](http://github.com/bos/text-icu):
* `git clone git://github.com/bos/text-icu.git`
(You can create and contribute changes using either Mercurial or git.)
# Authors
This library was written by Bryan O'Sullivan.
|