Swift String Case Conversion โ Methods & Examples
Published 2026-01-30 ยท convertcase.in
Swift strings are Unicode-correct by default, making case conversion reliable across languages. Here are the built-in methods and custom solutions.
Try it now โ free instant conversion
No signup ยท No limits ยท Works on all devices
1Swift Case Methods
"hello".uppercased() โ "HELLO" "HELLO".lowercased() โ "hello" "hello world".capitalized โ "Hello World"
2Locale-Aware
"istanbul".uppercased(with: Locale(identifier: "tr_TR")) โ correctly handles Turkish characters.
Frequently Asked Questions
Is Swift capitalized the same as title case?
capitalized capitalises every word. For strict title case (skipping minor words), you need a custom function.