Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- rxswift
- Refactoring
- swiftUI
- 애니메이션
- SWIFT
- clean architecture
- 리펙터링
- map
- UITextView
- Observable
- HIG
- Human interface guide
- combine
- 리팩토링
- ribs
- UICollectionView
- Protocol
- Clean Code
- Xcode
- 리펙토링
- uiscrollview
- ios
- RxCocoa
- MVVM
- swift documentation
- uitableview
- 스위프트
- 클린 코드
- collectionview
- tableView
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] HTML 특수문자 코드를 일반적인 문자열로 변경하는 방법 본문
HTML 특수문자 코드
HTML코드를 표현문자로 변경
HTML 특수문자 코드 | 변경 후 | |
1 | '가나다' | |
2 | "가나다" |
Swift에서 변경 방법
- String extension으로 추가
extension String {
init?(htmlEncodedString: String) {
guard let data = htmlEncodedString.data(using: .utf8) else {
return nil
}
let options: [NSAttributedString.DocumentReadingOptionKey: Any] = [
.documentType: NSAttributedString.DocumentType.html,
.characterEncoding: String.Encoding.utf8.rawValue
]
guard let attributedString = try? NSAttributedString(data: data, options: options, documentAttributes: nil) else {
return nil
}
self.init(attributedString.string)
}
}
- 결과
* 참고
http://kor.pe.kr/util/4/charmap2.htm
https://stackoverflow.com/questions/25607247/how-do-i-decode-html-entities-in-swift
'iOS 응용 (swift)' 카테고리의 다른 글
Comments