Swift version: 5.6
Swift has a dedicated Substring
type (String.SubSequence
) that is designed to hold slices of strings, which is a performance optimization: when you store part of a string in a different variable, Swift can simply point the substring at the parent string rather than copy all the data.
However, while substrings can be used in many of the same ways as regular strings, they aren’t the same – if you have a function that accepts a String
as a parameter, you simply cannot send it a Substring
.
To fix this, you can wrap your substring in a String
initializer like this:
let quote = "The revolution will be Swift"
let substring = quote.dropFirst(23)
let realString = String(substring)
SPONSORED Let’s face it, SwiftUI previews are limited, slow, and painful. Judo takes a different approach to building visually—think Interface Builder for SwiftUI. Build your interface in a completely visual canvas, then drag and drop into your Xcode project and wire up button clicks to custom code. Download the Mac App and start your free trial today!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 8.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.