LoginSignup
5
5

More than 3 years have passed since last update.

Swift:文字列を複数の区切り文字で分割する

Posted at

CharacterSetをうまく使うといい感じにできる.
例えばカンマとピリオドを含んだ文をそれらで分割する場合は以下のようにする.

let str = "a,b,cde,fgh.ijk.lmn"
let list = str.components(separatedBy: CharacterSet(charactersIn: ",."))
Swift.print(list)

// -> ["a", "b", "cde", "fgh", "ijk", "lmn"]
5
5
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
5
5