Instance Method インスタンスメソッド

lowercased(with:)

Returns a version of the string with all letters converted to lowercase, taking into account the specified locale. 全ての文字が小文字に変換された、この文字列の変形版を返します、指定されたロケールを考慮に入れます。

Declaration 宣言

func lowercased(with locale: Locale?) -> String

Parameters パラメータ

locale

The locale. For strings presented to users, pass the current locale ([NSLocale current]). To use the system locale, pass nil. ロケール。ユーザに提示される文字列に対して、現在のロケール([NSLocale current])を渡してください。システムロケールを使うには、nilを渡してください。

Return Value 戻り値

A lowercase string using the locale. localeを使っているローワケース文字列。

Discussion 議論

Case transformations aren’t guaranteed to be symmetrical or to produce strings of the same lengths as the originals. See lowercased for an example. ケース変換は、対称的であることを、または元と同じ長さの文字列を生み出すことを保証されません。lowercasedを例のために見てください。

See Also 参照

Changing Case 大文字小文字等(ケース)の変更