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
- 나를부르는숲
- DelayInput
- 옵셔널
- replacingOccurrences
- 프로그래머스
- ReactNative
- ios
- 약타입언어
- 데이터타입함수
- 함수형프로그래밍
- 72410
- reactnative android
- JavaScript
- 비반환함수
- multiline
- switch구문
- client-side-rendering
- beforePopState
- 동적언어
- 약타입
- textinput
- lineending
- SWIFT
- 17681
- reactnavigation
- Server-Side-Rendering
- 중첩함수
- 스위프트
- next.js
- 리액트네이티브
Archives
- Today
- Total
목록contains (1)
으니의 개발로그
[Swift] 문자열이나 배열에 특정 문자가 포함돼있는지 확인하기
[Swift] 문자열이나 배열에 특정 문자가 포함돼있는지 확인하기 contains(_:) 스위프트에서 문자열이나 배열에 특정 문자가 포함돼있는지 알아보기 위해서는 contains 함수를 사용하면 된다. contains 함수는 특정 문자 포함여부를 Boolean 값으로 리턴해주는 함수이다. 이 함수는 문자열에서도 사용할 수 있고, 배열에서도 사용할 수 있다. 문자열에서 사용하기 let seonho: String = "seonho" print(seonho.contains("s")) /* true */ print(seonho.contains("a")) /* false */ 배열에서 사용하기 let celebrity: [String] = ["seonho", "donghae", "hero"] print(celeb..
Swift/with. APS
2021. 2. 9. 22:18