La clase IntlBreakIterator

(PHP 5 >= 5.5.0, PHP 7)

Introducción

Un “iterador de ruptura” es un objeto ICU que expone métodos para localizar los límites de un texto (p.ej. límites de palabra o sentencia). La clase IntlBreakIterator de PHP sirve como la clase base para todos los tipos de iteradores de ruptura de ICU. Donde esté disponible funcionalidad extra, la extensión intl puede exponer el iterador de ruptura de ICU con subclases aptas, como IntlRuleBasedBreakIterator o IntlCodePointBreaIterator.

Esta clase implementa Traversable. Recorrer un IntlBreakIterator produce valores enteros no negativos que representan las ubicaciones sucesibas de los límites del texto, expresados como unidades de código UTF-8 (byte), tomados del inicio del texto (que tienen la ubicación 0). Las claves producidas pord el iterador simplemente forman la secuencia de números naturales {0, 1, 2, …}.

Sinopsis de la Clase

IntlBreakIterator implements Traversable {
/* Constantes */
const integer DONE = -1 ;
const integer WORD_NONE = 0 ;
const integer WORD_NONE_LIMIT = 100 ;
const integer WORD_NUMBER = 100 ;
const integer WORD_NUMBER_LIMIT = 200 ;
const integer WORD_LETTER = 200 ;
const integer WORD_LETTER_LIMIT = 300 ;
const integer WORD_KANA = 300 ;
const integer WORD_KANA_LIMIT = 400 ;
const integer WORD_IDEO = 400 ;
const integer WORD_IDEO_LIMIT = 500 ;
const integer LINE_SOFT = 0 ;
const integer LINE_SOFT_LIMIT = 100 ;
const integer LINE_HARD = 100 ;
const integer LINE_HARD_LIMIT = 200 ;
const integer SENTENCE_TERM = 0 ;
const integer SENTENCE_TERM_LIMIT = 100 ;
const integer SENTENCE_SEP = 100 ;
const integer SENTENCE_SEP_LIMIT = 200 ;
/* Métodos */
private __construct ( void )
public static createCharacterInstance ([ string $"locale" ] ) : ReturnType
public static createCodePointInstance ( void ) : ReturnType
public static createLineInstance ([ string $"locale" ] ) : ReturnType
public static createSentenceInstance ([ string $"locale" ] ) : ReturnType
public static createTitleInstance ([ string $"locale" ] ) : ReturnType
public static createWordInstance ([ string $"locale" ] ) : ReturnType
public current ( void ) : ReturnType
public first ( void ) : ReturnType
public following ( string $"offset" ) : ReturnType
public getErrorCode ( void ) : ReturnType
intl_get_error_code ( void ) : ReturnType
public getErrorMessage ( void ) : ReturnType
intl_get_error_message ( void ) : ReturnType
public getLocale ( string $"locale_type" ) : ReturnType
public getPartsIterator ([ string $"key_type" ] ) : ReturnType
public getText ( void ) : ReturnType
public isBoundary ( string $"offset" ) : ReturnType
public last ( void ) : ReturnType
public next ([ string $"offset" ] ) : ReturnType
public preceding ( string $"offset" ) : ReturnType
public previous ( void ) : ReturnType
public setText ( string $"text" ) : ReturnType
}

Constantes predefinidas

IntlBreakIterator::DONE

IntlBreakIterator::WORD_NONE

IntlBreakIterator::WORD_NONE_LIMIT

IntlBreakIterator::WORD_NUMBER

IntlBreakIterator::WORD_NUMBER_LIMIT

IntlBreakIterator::WORD_LETTER

IntlBreakIterator::WORD_LETTER_LIMIT

IntlBreakIterator::WORD_KANA

IntlBreakIterator::WORD_KANA_LIMIT

IntlBreakIterator::WORD_IDEO

IntlBreakIterator::WORD_IDEO_LIMIT

IntlBreakIterator::LINE_SOFT

IntlBreakIterator::LINE_SOFT_LIMIT

IntlBreakIterator::LINE_HARD

IntlBreakIterator::LINE_HARD_LIMIT

IntlBreakIterator::SENTENCE_TERM

IntlBreakIterator::SENTENCE_TERM_LIMIT

IntlBreakIterator::SENTENCE_SEP

IntlBreakIterator::SENTENCE_SEP_LIMIT

Tabla de contenidos