「Swift3入門」文字列.charactersで文字列を取り出すサンプルコード

サンプルコード

let cft = "this is a data"
for cc in cft.characters {
    print(cc)
}

 

Swift

Posted by arkgame