Type Method 型メソッド

stringWithCharacters:length:

Returns a string containing a given number of characters taken from a given C array of UTF-16 code units. UTF-16コード単位からなるある与えられたC配列から取られる与えられた数の文字を含んでいる文字列を返します。

Declaration 宣言

+ (instancetype)stringWithCharacters:(const unichar *)characters 
                              length:(NSUInteger)length;

Parameters パラメータ

chars

A C array of UTF-16 code units; the value must not be NULL. UTF-16コード単位からなるあるC配列;値はNULLであってはいけません。

length

The number of characters to use from chars. charsから使う文字の数。

Return Value 戻り値

A string containing length UTF-16 code units taken (starting with the first) from chars. charsからとられた(最初から始めて)lengthのUTF-16コード単位を含んでいる文字列。

See Also 参照

Creating and Initializing Strings 文字列の作成と初期化