Slide 24
Slide 24 text
Copyright © 2017 eureka, Inc. All rights reserved.
24
slice String
let array = ["❤", "#", "❤", "$", "%", "&"]
let familyLove = array[1...2]
// ["#", “❤"]
let string = "あのイーハトーヴォのすきとおった風"
let targetStart = string.index(string.startIndex, offsetBy: 2)
let targetEnd = string.index(string.startIndex, offsetBy: 9)
let substring2 = string[targetStart..