「Swift」指定範囲(range)の文字列を取得するサンプル
書式
文字列.startIndex
文字列.endIndex
使用例
let str = "this is a test message" let stIdx = str.index(str.startIndex, offsetBy: 3) let edIdx = str.index(str.endIndex, offsetBy: -2) str[stIdx...edIdx]
Coding Changes the World
書式
文字列.startIndex
文字列.endIndex
使用例
let str = "this is a test message" let stIdx = str.index(str.startIndex, offsetBy: 3) let edIdx = str.index(str.endIndex, offsetBy: -2) str[stIdx...edIdx]