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 | 31 |
Tags
- 플로우차트
- Git과 Github차이점
- git이란
- 깃허브
- JSONSerialization
- 정규표현식
- xcode
- github
- PushNotification
- ios
- GitvsGithub
- flow chart
- Regex
- 스위프트
- 계산기
- github란
- 정규식
- OS
- 백준
- APNS
- 흐름도
- git사용법
- UIViewController
- git
- flowchart
- swift
- 깃
- 순서도
- 플로우 차트
- 애플
Archives
- Today
- Total
Diana의 iOS 개발일기
[swift 함수정리] - NSExpression, replacingOccurrences 등 본문
1. NSExpression
애플 공식 문서: An expression for use in a comparison predicate.
해당 함수는 계산기 등의 연산에 자주 사용되며 문자열을 받아 계산식으로 자동 변환해주는 함수입니다.
class NSExpression : NSObject
checkedWorkingsForPercent에 "6*5-10"의 문자열이 들어갈 경우 expression의 결과로는 (6*5)-10 이 출력됩니다.
2. replacingOccurrences(of:with:)
애플 공식문서 : Returns a new string in which all occurrences of a target string in the receiver are replaced by another given string.
해당 문자열 중 of에 해당하는 문자가 존재 할 시 with의 문자로 자동 변경합니다. with는 nil일 수 있습니다.
workings 문자열에 "%" 문자열이 존재할 때 이를 "*0.01"문자열로 변경합니다.
3. expressionValue(with:context:)
애플 공식문서: Evaluates an expression using a given object and context.
func expressionValue(with object: Any?, context: NSMutableDictionary?) -> Any?
뒤에 as 등을 사용하여 형변환에 사용할 수 있다.
4. truncatingRemainder(dividingBy:)
애플 공식문서: Returns the remainder of this value divided by the given value using truncating division.
func truncatingRemainder(dividingBy other: Double) -> Double
'Swift > Swift' 카테고리의 다른 글
[Swift] - 정규표현식(Regex) (1) | 2022.04.10 |
---|---|
[Swift 정리] - CustomStringConvertible (1) | 2021.09.07 |
[swift 함수정리] - JSONSerialization 클래스 (1) | 2021.05.06 |