
ñàóMg  ã               @   s[   d  d l  Td  d l  m Z e e d ƒ e e j d ƒ e e j d ƒ e e j d ƒ d S)é    )Ú*)Ú_install__doc__a§  
The BreakIterator class implements methods for finding the location of
boundaries in text.

BreakIterator is an abstract base class. Instances of BreakIterator maintain
a current position and scan over text returning the index of characters
where boundaries occur.

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

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

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.

Character boundary analysis allows users to interact with characters as they
expect to, for example, when moving the cursor through a text
string. Character boundary analysis provides correct navigation of through
character strings, regardless of how the character is stored. For example,
an accented character might be stored as a base character and a diacritical
mark. What users consider to be a character can differ between languages.

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/.
z°
BreakIterator is abstract. Use one of the class instantiators:
createWordInstance, createLineInstance, createCharacterInstance,
createSentenceInstance or createTitleInstance.
z1
Return the string over the text being analyzed.
zà
Returns an instance of a BreakIterator implementing line breaks. Line breaks
are logically possible line breaks, actual line breaks are usually
determined based on display width. LineBreak is useful for word wrapping
text.
N)Z_icur   ZBreakIteratorÚ__init__ZgetTextZcreateLineInstance© r   r   ú*/usr/lib/python3/dist-packages/icu_docs.pyÚ<module>   s   
!			