I'm not sure what I'm missing here, but all I'm trying to do is get a substring from a string. I'm messing around in a playground, and my code is only three lines long lines long, I declare a string, get an index, then try and get a substring from it, and I get this error. This is all I have for my code...
var name = "Stephen"
var index = name.startIndex.advancedBy(3)
var substring = name.substringToIndex(index)
Am I doing this wrong? I don't see any other ways to get a substring from a string.
In an unrelated question, if I want to grab a substring from a string between indices 2 and 5 how would I go about that in Swift 2?