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
- JavaScript
- 72410
- 나를부르는숲
- 프로그래머스
- 비반환함수
- ReactNative
- 옵셔널
- multiline
- beforePopState
- reactnative android
- textinput
- lineending
- DelayInput
- next.js
- 중첩함수
- client-side-rendering
- 약타입언어
- replacingOccurrences
- reactnavigation
- SWIFT
- 함수형프로그래밍
- Server-Side-Rendering
- ios
- 스위프트
- 동적언어
- 17681
- 약타입
- switch구문
- 리액트네이티브
- 데이터타입함수
Archives
- Today
- Total
으니의 개발로그
[Swift] 문자열에서 특정 문자 제거하거나 치환하기 본문
[Swift] 문자열에서 특정 문자 제거하거나 치환하기
python
에서는 문자열에서 특정 문자를 제거하거나 치환하기 위해서 replace
함수를 사용하면 된다.
name = "seonho"
print(name.replace("e", ""))
# sonho
print(name.replace("e", "a"))
# saonho
swift
에서도 이런 함수가 있는지 확인하기 위해 찾아보니 다행히 있었다!
replacingOccurrences(of:with:)
of
에는 바꾸고 싶은 문자, with
에는 바꿀 문자를 적어주면 된다.
let name: String = "seonho"
let change1: String = name.replacingOccurrences(of: "e", with: "")
let change2: String = name.replacingOccurrences(of: "e", with: "a")
print(change1)
/* sonho */
print(change2)
/* saonho */
'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 |