文字(Char)と文字列を挿入する方法。
Swiftで文字を挿入する方法(String)
1 2 3 4 5 |
//1文字挿入する方法 var str = "http://tecc0.com" let insertIdx = str.index(str.startIndex, offsetBy: 4) str.insert(contentsOf: "s", at: insertIdx) // https://tecc0.com |
Swiftで文字列を挿入する方法(NSMutableString)
1 2 3 4 |
//文字列を挿入する方法 var str = NSMutableString(string: "1てんどん3おやこどん") str.insert("2かつどん", at: 5) // 1てんどん2かつどん3おやこどん |
気をつけること
- 上のinsert はString型、下のinsertは NSMutableString型
- 上ののatはIndex型、下のatはInt型