Swift 5 Zdobądź pierwszy znak struny
Swift 5
let str = "abcdef"
print( String(str.characters.prefix(1)) ) // output: "a"
print( String(str.characters.prefix(3)) ) // output: "abc"
Wicked Wolf