1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| str.count
let name = "Marie Curie" let firstSpace = name.firstIndex(of: " ") ?? name.endIndex let firstName = name[..<firstSpace]
Array(name)
let string = "Helloworld" string.dropLast(string.count - 6)
let string = "Helloworld" string.dropFirst(string.count - 6)
var string = "Hellowaeorld" string.popLast()
|