Swift 5 Obtenez le premier caractère de la chaîne
Swift 5
let str = "abcdef"
print( String(str.characters.prefix(1)) ) // output: "a"
print( String(str.characters.prefix(3)) ) // output: "abc"
Wicked Wolf