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
- client-side-rendering
- ios
- textinput
- DelayInput
- next.js
- 스위프트
- lineending
- SWIFT
- multiline
- ReactNative
- 함수형프로그래밍
- replacingOccurrences
- 중첩함수
- Server-Side-Rendering
- 리액트네이티브
- reactnavigation
- 72410
- 약타입언어
- 약타입
- switch구문
- 프로그래머스
- beforePopState
- 옵셔널
- 나를부르는숲
- 17681
- 동적언어
- 데이터타입함수
- 비반환함수
- reactnative android
- JavaScript
Archives
- Today
- Total
으니의 개발로그
[Swift] 앞뒤 공백 제거하기 / 앞뒤의 특정 문자 제거하기 본문
[Swift] 앞뒤 공백 제거하기 / 앞뒤의 특정 문자 제거하기
보통의 프로그래밍 언어에서는 앞뒤의 공백을 제거 할 수 있는 trim
함수가 있고, python
에서는 앞뒤에 있는 특정문자를 제거할 수 있는 strip
함수가 있다.
그리고 swift
에서 사용하는 trim
함수는 python
의 strip
함수와 같은 기능을 할 수가 있다!!!
trimmingCharacters(in:)
앞뒤 공백 제거하기
let name: String = " seonho "
print(name.trimmingCharacters(in: .whitespaces))
/* seonho */
앞뒤의 특정문자 제거하기
let name: String = ".seonho."
print(name.trimmingCharacters(in: ["."]))
/* seonho */
let favoriteColor: String = "yellow__"
print(favoriteColor.trimmingCharacters(in: ["_"]))
/* yellow */
'Swift > with. APS' 카테고리의 다른 글
[Swift] 진수 변환 (2) | 2021.02.13 |
---|---|
[Swift] 문자열에서 특정 문자 제거하거나 치환하기 (0) | 2021.02.10 |
[Swift] 문자열이나 배열에 특정 문자가 포함돼있는지 확인하기 (0) | 2021.02.09 |
[Swift] init(repeating:count:) 사용하기 (0) | 2021.02.03 |
[Swift] 인덱스로 문자열의 글자 가져오기 (0) | 2021.02.02 |