Swift4 获取字符串首字符或单个字符(character)

不得不说,swift取字符做的真繁琐
大致步骤如下:

let testStr = "test str"
let position = testStr.index(testStr.startIndex, offsetBy: 1) //获取String.index
let firstChar = testStr[position]
print(firstChar)

image.png

这API真心难用

你可能感兴趣的:(Swift4 获取字符串首字符或单个字符(character))