CakeFest 2024: The Official CakePHP Conference

IntlPartsIterator クラス

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

はじめに

このクラスのインスタンスは、 IntlBreakIterator から得られます。 break iterator は走査するたびに、 一連の境界の位置を返しますが、 IntlPartsIterator は、ふたつの連続する境界の間で認識されたテキストの断片を提供します。

キーは境界の左側、右側、として表現されるかもしれませんし、 負でない整数値として表現されるだけかもしれません。 IntlBreakIterator::getPartsIterator() も参照ください。

クラス概要

class IntlPartsIterator extends IntlIterator {
/* 定数 */
public const int KEY_SEQUENTIAL;
public const int KEY_LEFT;
public const int KEY_RIGHT;
/* メソッド */
/* 継承したメソッド */
}

目次

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top