Returns a Boolean value indicating whether the string begins with the specified prefix.
SDK
- Xcode 6.0.1+
Framework
- Swift Standard Library
Declaration
Parameters
prefix
A possible prefix to test against this string.
Return Value
true
if the string begins with prefix
; otherwise, false
.
Discussion
The comparison is both case sensitive and Unicode safe. The case-sensitive comparison will only match strings whose corresponding characters have the same case.
The Unicode-safe comparison matches Unicode scalar values rather than the code points used to compose them. The example below uses two strings with different forms of the "é"
character—the first uses the composed form and the second uses the decomposed form.