LoginSignup
7
3

More than 3 years have passed since last update.

swiftで文字列を1文字ずつの配列に変換する

Last updated at Posted at 2020-10-10

AtCoderの問題を解いている際に、文字列を1文字ずつ分割する必要があったのでメモ

    let charArray = Array("abcdef")

    print(charArray)
    // ["a", "b", "c", "d", "e", "f"]
    print(type(of: charArray[0]))
    // Character
7
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
3