티스토리 뷰


Well done is better than well said.

기록은 기억을 지배한다.

Swift Int값을 000의 자리마다 콤마를 넣어서 표현해보자.

Swift4.0 2017.12.28 동작확인

extension Int {
   private static var commaFormatter: NumberFormatter = {
       let formatter = NumberFormatter()
       formatter.numberStyle = .decimal
       return formatter
   }()
   var commaRepresentation: String {
       return Int.commaFormatter.string(from: NSNumber(value: self)) ?? ""
   }
}

대단하다.. 스택오버플로우 사람들..

'CS > Swift' 카테고리의 다른 글

[Swift] Protocol을 간략하게 알아보자!  (0) 2018.03.23
[Swift]Value vs. Reference  (0) 2017.11.07
[Swift]객체와 테스트  (0) 2017.11.07
[Swift]오늘의 이슈 - 예외처리관련  (0) 2017.11.05
[Swift]String 문자열 하나씩 쪼개기  (1) 2017.11.03
Comments