특정 문자에 대한 분할(componentsSeparatedByString)
2016. 8. 3. 12:46ㆍProgramming/Swift
반응형
let str = "man|17&woman|19"
let result = str.componentsSeparatedByString("&") print(result) // ["man|17", "woman|19] |
let charSet = NSCharacterSet(charactersInString: "|^") let result = str.componentsSeparatedByCharactersInSet(charSet) print(result) // ["man","17","woman","19"] |
let Array2D = str.componentsSeparatedByString("^").map { $0.componentsSeparatedByString("|") } print(Array2D) // [["man,"17"],["woman","19"]] |
반응형
'Programming > Swift' 카테고리의 다른 글
가로모드 일 경우 버튼 사이즈 조정 (0) | 2016.08.04 |
---|---|
다른 class에서 struct값 가져올때.. (0) | 2016.08.04 |
[ERROR] pod install 시 Unable to satisfy the following requirements (0) | 2016.08.01 |
Struct (0) | 2016.07.20 |
How to kill your app when it enters background mode (0) | 2016.07.15 |