250x250
반응형
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 |
Tags
- Leetcode
- IOS
- basic
- OSLog
- dart
- listview
- protocol
- flutter
- algorithm
- GIT
- COMMIT
- swiftlint
- toyproject
- Swift
- ToDoRim
- Equatable
- Widget
- pubspec.yaml
- github
- designPattern
- Extentsion
- it
- SwiftGen
- pubspec
- keyWindow
- xcode
- tip
- enumerations
- UIAccessibility
- reetcode
Archives
- Today
- Total
목록string (1)
수니의 개발새발
[iOS/Swift/Basic] String
String 문자열 String의 기본 기능 접두어 hasPrifix() let blog: String = "DevSuni Blog" print(blog.hasPrefix("Dev")) // true print(blog.hasPrefix("Suni")) // false 접미어 hasSuffix() let blog: String = "DevSuni Blog" print(blog.hasSuffix("Blog")) // true print(blog.hasSuffix("blog")) // false - 대소문자 구분 대소문자 변환 .uppercased() / .lowercased() let name: String = "suni" print(name.uppercased()) // SUNI let name: Str..
iOS - Swift
2022. 1. 16. 23:13