Swift 5 Holen Sie sich das erste Zeichen der String

Swift 5
let str = "abcdef"
print( String(str.characters.prefix(1)) ) // output: "a"
print( String(str.characters.prefix(3)) ) // output: "abc"
Wicked Wolf