The IntlBreakIterator class
(PHP 5 >= 5.5.0, PHP 7)
はじめに
A “break iterator” is an ICU object that exposes methods for locating boundaries in text (e.g. word or sentence boundaries). The PHP IntlBreakIterator serves as the base class for all types of ICU break iterators. Where extra functionality is available, the intl extension may expose the ICU break iterator with suitable subclasses, such as IntlRuleBasedBreakIterator or IntlCodePointBreakIterator.
This class implements Traversable. Traversing an IntlBreakIterator yields non-negative integer values representing the successive locations of the text boundaries, expressed as UTF-8 code units (byte) counts, taken from the beginning of the text (which has the location 0). The keys yielded by the iterator simply form the sequence of natural numbers {0, 1, 2, …}.
クラス概要
定義済み定数
IntlBreakIterator::DONEIntlBreakIterator::WORD_NONEIntlBreakIterator::WORD_NONE_LIMITIntlBreakIterator::WORD_NUMBERIntlBreakIterator::WORD_NUMBER_LIMITIntlBreakIterator::WORD_LETTERIntlBreakIterator::WORD_LETTER_LIMITIntlBreakIterator::WORD_KANAIntlBreakIterator::WORD_KANA_LIMITIntlBreakIterator::WORD_IDEOIntlBreakIterator::WORD_IDEO_LIMITIntlBreakIterator::LINE_SOFTIntlBreakIterator::LINE_SOFT_LIMITIntlBreakIterator::LINE_HARDIntlBreakIterator::LINE_HARD_LIMITIntlBreakIterator::SENTENCE_TERMIntlBreakIterator::SENTENCE_TERM_LIMITIntlBreakIterator::SENTENCE_SEPIntlBreakIterator::SENTENCE_SEP_LIMIT
目次
- IntlBreakIterator::__construct — インスタンス化をできないようにするための private なコンストラクタ
- IntlBreakIterator::createCharacterInstance — 文字シーケンスの組み合わせの境界用にイテレータを作る
- IntlBreakIterator::createCodePointInstance — コードポイントの境界用にイテレータを作る
- IntlBreakIterator::createLineInstance — 論理的に可能な改行用にイテレータを作る
- IntlBreakIterator::createSentenceInstance — 文末用にイテレータを作る
- IntlBreakIterator::createTitleInstance — タイトル文字の区切り用にイテレータを作る
- IntlBreakIterator::createWordInstance — 単語の区切り用にイテレータを作る
- IntlBreakIterator::current — 現在位置のインデックスを取得する
- IntlBreakIterator::first — テキスト内の最初の文字を場所を取得する
- IntlBreakIterator::following — 指定したオフセット以降の最初の境界までイテレータを進める
- IntlBreakIterator::getErrorCode — このオブジェクトの直近のエラーコードを取得する
- IntlBreakIterator::getErrorMessage — このオブジェクトの直近のエラーメッセージを取得する
- IntlBreakIterator::getLocale — このオブジェクトに関連づけられたロケールを取得する
- IntlBreakIterator::getPartsIterator — 境界と境界の間の navigating fragments 用にイテレータを作る
- IntlBreakIterator::getText — スキャンするテキストを取得する
- IntlBreakIterator::isBoundary — あるオフセットが境界のオフセットかどうかを調べる
- IntlBreakIterator::last — イテレータの位置を、最後の文字より後に設定する
- IntlBreakIterator::next — イテレータを次の境界まで進める
- IntlBreakIterator::preceding — イテレータの位置を、指定したオフセット以前の最初の境界に設定する
- IntlBreakIterator::previous — イテレータの位置を、現在位置の直前の境界に設定する
- IntlBreakIterator::setText — スキャンするテキストを設定する