[Solved] How can I substring this string?


Swift’s substring is complicated:

let str = "12:345"

if let range = str.range(of: ":") {
    let startIndex = str.index(range.lowerBound, offsetBy: 1)
    let endIndex = str.index(startIndex, offsetBy: 2)
    print(str[startIndex..<endIndex])
}

2

solved How can I substring this string?