var lowercased: String
A lowercase representation of the string.
この文字列のローワケース表現。
var localizedLowercase : String
Returns a version of the string with all letters converted to lowercase, taking into account the current locale.
全ての文字がローワケースに変換された、この文字列の変形版を返します、現在のロケールを考慮に入れます。
func lowercased(with: Locale?) -> String
Returns a version of the string with all letters converted to lowercase, taking into account the specified locale.
全ての文字が小文字に変換された、この文字列の変形版を返します、指定されたロケールを考慮に入れます。
var uppercased: String
An uppercase representation of the string.
この文字列のアッパーケース表現。
func uppercased(with: Locale?) -> String
Returns a version of the string with all letters converted to uppercase, taking into account the specified locale.
全ての文字が大文字に変換された、この文字列の変形版を返します、指定されたロケールを考慮に入れます。
var capitalized: String
A capitalized representation of the string.
語頭を大文字にした表現の文字列。
var localizedCapitalized : String
Returns a capitalized representation of the receiver using the current locale.
レシーバの頭文字表現を返します、現在のロケールを使います。
func capitalized(with: Locale?) -> String
Returns a capitalized representation of the receiver using the specified locale.
レシーバの頭文字表現を返します、指定されたロケールを使います。