---
title: lowercased
framework: foundation
role: symbol
role_heading: Instance Property
path: foundation/nsstring/lowercased
---

# lowercased

A lowercase representation of the string.

## Declaration

```swift
var lowercased: String { get }
```

## Discussion

Discussion This property performs the canonical (non-localized) mapping. It is suitable for programming operations that require stable results not depending on the current locale. Case transformations aren’t guaranteed to be symmetrical or to produce strings of the same lengths as the originals. That is, the result of this statement: lcString = [myString lowercaseString]; …might not be equal to this statement: lcString = [[myString uppercaseString] lowercaseString]; For example, the uppercase form of “ß” in German is “SS”, so converting “Straße” to uppercase, then lowercase, produces this sequence of strings: “Straße” “STRASSE” “strasse” important: When working with text that’s presented to the user, use localizedLowercase or lowercased(with:) instead.

## See Also

### Changing Case

- [localizedLowercase](foundation/nsstring/localizedlowercase.md)
- [lowercased(with:)](foundation/nsstring/lowercased(with:).md)
- [uppercased](foundation/nsstring/uppercased.md)
- [localizedUppercase](foundation/nsstring/localizeduppercase.md)
- [uppercased(with:)](foundation/nsstring/uppercased(with:).md)
- [capitalized](foundation/nsstring/capitalized.md)
- [localizedCapitalized](foundation/nsstring/localizedcapitalized.md)
- [capitalized(with:)](foundation/nsstring/capitalized(with:).md)
