「Swift」componentsで文字列を分割するサンプル

書式
let 変数名 String =値
変数名.components(separatedBy: " “)
components(separatedBy: ” “)で文字列を” “スペースで分割します。
使用例

import Foundation

let target:String = "study skill become smart"
let res:[String] = target.components(separatedBy: " ")
print("components(separatedByで文字列から空白分割する結果" )
print(res[0]) // "study"
print(res[1]) // "skill"
print(res[2]) // "become"
print(res[3]) // "smart"

実行結果
$ swift 100.swift
components(separatedByで文字列から空白分割する結果
study
skill
become
smart

Swift

Posted by arkgame