Returns a string created by using a given format string as a template into which the remaining argument values are substituted according to the current locale.
与えられた書式設定文字列を、それへと残りの引数値が現在のロケールに従って置き換えられるテンプレートとして使うことで作成される文字列を返します。
Raises an NSInvalidArgumentException if format is nil.NSInvalidArgumentExceptionを引き起こします、もしformatがnilならば。
...
A comma-separated list of arguments to substitute into format.formatへと置換することになる、引数のコンマ区切りのリスト。
Return Value
戻り値
A string created by using format as a template into which the following argument values are substituted according to the formatting information in the current locale.formatを、それへとこの後に続く引数値が現在のロケールにおける書式設定情報に従って置き換えられるテンプレートとして使うことによって作成される文字列。
Discussion
議論
This method is equivalent to using initWithFormat:locale: and passing the current locale as the locale argument.
このメソッドは、initWithFormat:locale:を使ってそして現在のロケールをロケール引数として渡すことに等しいです。
As an example of formatting, this method replaces the decimal according to the locale in %f and %d substitutions, and calls descriptionWithLocale: instead of description where necessary.
書式設定の例として、このメソッドは10進数を%fと%d置換に従って置き換えます、そしてdescriptionWithLocale:をdescriptionの代わりに必要に応じて呼び出します。
This code excerpt creates a string from another string and a float:
このコード抜粋は、ある文字列を別の文字列とfloatから作成します:
The resulting string has the value “Cost: 1234.560000\n” if the locale is en_US, and “Cost: 1234,560000\n” if the locale is fr_FR.
結果文字列は、値 “Cost: 1234.560000\n” をもしロケールがen_USであるならば、そして “Cost: 1234,560000\n” をロケールがfr_FRであるならば、持ちます。
Returns an initialized NSString object containing a given number of bytes from a given buffer of bytes interpreted in a given encoding.
初期化されたNSStringオブジェクトを返します、それはある与えられた数のバイトを、ある与えられた符号化で解釈されるバイトの、ある与えられたバッファから含みます。
Returns an initialized NSString object that contains a given number of bytes from a given buffer of bytes interpreted in a given encoding, and optionally frees the buffer.
初期化されたNSStringオブジェクトを返します、それはある与えられた数のバイトを、ある与えられた符号化で解釈されるバイトのある与えられたバッファから含みます、そして任意にバッファを解放します。
Returns an initialized NSString object that contains a given number of characters from a given C array of UTF-16 code units.
初期化されたNSStringオブジェクトを返します、それは与えられた数の文字を、UTF-16コード単位からなる与えられたC配列から含んでいます。
Returns an initialized NSString object that contains a given number of characters from a given C array of UTF-16 code units.
初期化されたNSStringオブジェクトを返します、それは与えられた数の文字を、UTF-16コード単位からなる与えられたC配列から含んでいます。
Returns an NSString object initialized using the characters in a given C array, interpreted according to a given encoding.NSStringオブジェクトを返します、与えられたC配列の中の文字を使って初期化されます、与えられた符号化によって解釈されます。
Returns an NSString object initialized by copying the characters from a given C array of UTF8-encoded bytes.NSStringオブジェクトを返します、UTF8符号化されたバイトからなる与えられたC配列から文字をコピーすることによって初期化されます。
Returns an NSString object initialized by using a given format string as a template into which the remaining argument values are substituted.
与えられた書式設定文字列を、それへと残りの引数値が置き換えられるテンプレートとして使うことによって初期化されるNSStringオブジェクトを返します。
Returns an NSString object initialized by using a given format string as a template into which the remaining argument values are substituted without any localization.
あるNSStringオブジェクトを返します、与えられた書式設定文字列をテンプレートとして使って、それへと残りの引数値が何らローカライズなしに置き換えられることによって初期化されます。
Returns an NSString object initialized by using a given format string as a template into which the remaining argument values are substituted according to given locale.NSStringオブジェクトを返します、与えられた書式設定文字列を、それへと残りの引数値がある与えられたロケールに従って置き換えられるテンプレートとして使うことによって初期化されます。
Returns an NSString object initialized by using a given format string as a template into which the remaining argument values are substituted according to given locale information. This method is meant to be called from within a variadic function, where the argument list will be available.NSStringオブジェクトを返します、与えられた書式設定文字列を、それへと残りの引数値が指定ロケール情報に従って置き換えられるあるテンプレートとして使うことによって初期化されます。このメソッドは、可変長引数関数内から呼び出されるためのものです、そこでは引数リストが利用可能です。
Returns an NSString object initialized by converting given data into UTF-16 code units using a given encoding.NSStringオブジェクトを返します、与えられたデータをUTFー16コード単位へとある与えられた符号化を使って変換することによって初期化されます。
Returns a string created by using a given format string as a template into which the remaining argument values are substituted.
与えられた書式設定文字列を、それへと残りの引数値が置き換えられるテンプレートとして使うことで作成される文字列を返します。
Returns a string containing a given number of characters taken from a given C array of UTF-16 code units.
UTF-16コード単位からなるある与えられたC配列から取られる与えられた数の文字を含んでいる文字列を返します。