package uuseg
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=1094ca4a7d801177e367d3be9a722318ac3172664f896c49fc5e70df50fcc402
md5=409bbd8a3c3f00e0d7259441a5e4b648
README.md.html
Uuseg — Unicode text segmentation for OCaml
Release 0.8.0
Uuseg is an OCaml library for segmenting Unicode text. It implements the locale independent Unicode text segmentation algorithms to detect grapheme cluster, word and sentence boundaries and the Unicode line breaking algorithm to detect line break opportunities.
The library is independent from any IO mechanism or Unicode text data structure and it can process text without a complete in-memory representation.
Uuseg depends on Uucp and optionally on Uutf for support on OCaml UTF-X encoded strings. It is distributed under the BSD3 license.
Home page: http://erratique.ch/software/uuseg
Contact: Daniel Bünzli <daniel.buenzl i@erratique.ch>
Installation
Uuseg can be installed with opam
:
opam install uuseg
opam install uutf uuseg # for support on OCaml UTF-X encoded strings
If you don't use opam
consult the opam
file for build instructions.
Documentation
The documentation and API reference is automatically generated by ocamldoc
from the interfaces. It can be consulted online and there is a generated version in the doc
directory of the distribution.
Sample programs
If you installed Uuseg with opam
sample programs are located in the directory opam config var uuseg:doc
.
In the distribution sample programs are located in the test
directory of the distribution. They can be built with:
ocamlbuild -use-ocamlfind test/tests.otarget
The resulting binaries are in _build/test
.