text-icu-0.6.3.1: Bindings to the ICU library

PortabilityGHC
Stabilityexperimental
Maintainerbos@serpentine.com

Data.Text.ICU.Break

Contents

Description

String breaking functions for Unicode, implemented as bindings to the International Components for Unicode (ICU) libraries.

The text boundary positions are found according to the rules described in Unicode Standard Annex #29, Text Boundaries, and Unicode Standard Annex #14, Line Breaking Properties. These are available at http://www.unicode.org/reports/tr14/ and http://www.unicode.org/reports/tr29/.

Synopsis

Types

data Line Source

Line break status.

Constructors

Soft

A soft line break is a position at which a line break is acceptable, but not required.

Hard 

Instances

data Word Source

Word break status.

Constructors

Uncategorized

A "word" that does not fit into another category. Includes spaces and most punctuation.

Number

A word that appears to be a number.

Letter

A word containing letters, excluding hiragana, katakana or ideographic characters.

Kana

A word containing kana characters.

Ideograph

A word containing ideographic characters.

Instances

Breaking functions

breakCharacter :: LocaleName -> Text -> IO (BreakIterator ())Source

Break a string on character boundaries.

Character boundary analysis identifies the boundaries of "Extended Grapheme Clusters", which are groupings of codepoints that should be treated as character-like units for many text operations. Please see Unicode Standard Annex #29, Unicode Text Segmentation, http://www.unicode.org/reports/tr29/ for additional information on grapheme clusters and guidelines on their use.

breakLine :: LocaleName -> Text -> IO (BreakIterator Line)Source

Break a string on line boundaries.

Line boundary analysis determines where a text string can be broken when line wrapping. The mechanism correctly handles punctuation and hyphenated words.

breakSentence :: LocaleName -> Text -> IO (BreakIterator ())Source

Break a string on sentence boundaries.

Sentence boundary analysis allows selection with correct interpretation of periods within numbers and abbreviations, and trailing punctuation marks such as quotation marks and parentheses.

breakWord :: LocaleName -> Text -> IO (BreakIterator Word)Source

Break a string on word boundaries.

Word boundary analysis is used by search and replace functions, as well as within text editing applications that allow the user to select words with a double click. Word selection provides correct interpretation of punctuation marks within and following words. Characters that are not part of a word, such as symbols or punctuation marks, have word breaks on both sides.

clone :: BreakIterator a -> IO (BreakIterator a)Source

Thread safe cloning operation. This is substantially faster than creating a new BreakIterator from scratch.

setText :: BreakIterator a -> Text -> IO ()Source

Point an existing BreakIterator at a new piece of text.

Iteration functions

Important note: All of the indices accepted and returned by functions in this module are offsets into the raw UTF-16 text array, not a count of code points.

current :: BreakIterator a -> IO (Maybe I16)Source

Return the character index most recently returned by next, previous, first, or last.

first :: BreakIterator a -> IO I16Source

Reset the breaker to the beginning of the text to be scanned.

last :: BreakIterator a -> IO I16Source

Reset the breaker to the end of the text to be scanned.

next :: BreakIterator a -> IO (Maybe I16)Source

Advance the iterator and break at the text boundary that follows the current text boundary.

previous :: BreakIterator a -> IO (Maybe I16)Source

Advance the iterator and break at the text boundary that precedes the current text boundary.

preceding :: BreakIterator a -> Int -> IO (Maybe I16)Source

Determine the text boundary preceding the specified offset.

following :: BreakIterator a -> Int -> IO (Maybe I16)Source

Determine the text boundary following the specified offset.

isBoundary :: BreakIterator a -> Int -> IO BoolSource

Determine whether the specfied position is a boundary position. As a side effect, leaves the iterator pointing to the first boundary position at or after the given offset.

Iterator status

getStatus :: BreakIterator a -> IO aSource

Return the status from the break rule that determined the most recently returned break position. For rules that do not specify a status, a default value of () is returned.

getStatuses :: BreakIterator a -> IO [a]Source

Return statuses from all of the break rules that determined the most recently returned break position.

Locales

available :: [LocaleName]Source

Locales for which text breaking information is available. A BreakIterator in a locale in this list will perform the correct text breaking for the locale.