九月第一周
Posted pengsi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了九月第一周相关的知识,希望对你有一定的参考价值。
1.截取某字符串的前10个字符串:
let sub1 = str.prefix(10)
截取某字符串的后10个字符串
let str1 = str.suffix(10)
也可以换种写法
let index2 = str.index(str.endIndex, offsetBy: -10)
let sub4 = str[index2..<str.endIndex]
截取某字符串的第3个字符到第6个字符范围的字符串
let index3 = str.index(str.startIndex, offsetBy: 3)
let index4 = str.index(str.startIndex, offsetBy: 6)
let sub4 = str[index3..<index4]
2. JSONDecoder实现转Model:
https://developer.apple.com/documentation/foundation/jsondecoder
https://www.jianshu.com/p/ca1b9094d0e9
3.Swift常用基本第三方:
以上是关于九月第一周的主要内容,如果未能解决你的问题,请参考以下文章
用java来判断当前日期是不是在 每月第一周周一及第三周周一,周一12:00至次日24:00中
js-显示指定周数的周一和周日,指定月份的第一天和最后一天-----------个人百度 整理的