lowercaseString
localizedLowercaseString
- lowercaseStringWithLocale:
uppercaseString
localizedUppercaseString
- uppercaseStringWithLocale:
localizedCapitalizedString
- capitalizedStringWithLocale:
Availability 有効性
Technology
@property(readonly, copy) NSString
*capitalizedString;
A capitalized string is a string with the first character in each word changed to its corresponding uppercase value, and all remaining characters set to their corresponding lowercase values. A word is any sequence of characters delimited by spaces, tabs, or line terminators (listed under get
). Some common word delimiting punctuation isn’t considered, so this property may not generally produce the desired results for multiword strings.
語頭を大文字にした文字列は、各単語において最初の文字をそれの対応している大文字値へ変更した、そしてすべての残りの文字をそれらの対応している小文字値へ設定した文字列です。単語は空白、タブ、または行終端子(get
で一覧にされます)で区切られたいくらかの文字の連なりです。幾つかのよくある単語区切り約物は考慮されません、それでこのプロパティは2語以上からなる文字列に対して望ましい結果を大抵は生み出しません。
Case transformations aren’t guaranteed to be symmetrical or to produce strings of the same lengths as the originals. See lowercase
for an example.
ケース変換は、対称的であることを、または元と同じ長さの文字列を生み出すことを保証されません。lowercase
を例のために見てください。
This property performs the canonical (non-localized) mapping. It is suitable for programming operations that require stable results not depending on the current locale. このプロパティは、正準(非現地語)マッピングを行います。それは、現在のロケールに依存しない安定した結果を必要とするプログラミング操作に適しています。
Important 重要
When working with text that’s presented to the user, use localized
or capitalized
instead.
ユーザに提示されるテキストを扱う時は、localized
またはcapitalized
を代わりに使ってください。
lowercaseString
localizedLowercaseString
- lowercaseStringWithLocale:
uppercaseString
localizedUppercaseString
- uppercaseStringWithLocale:
localizedCapitalizedString
- capitalizedStringWithLocale: