「Swift」指定endIndeより前の文字列を取得するサンプル
書式
offsetBy:数字
使用例
let str = "this is a test message" // 最後から2番目以前 let res= str.index(str.endIndex, offsetBy: -2) str[...res]
Coding Changes the World
書式
offsetBy:数字
使用例
let str = "this is a test message" // 最後から2番目以前 let res= str.index(str.endIndex, offsetBy: -2) str[...res]