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