エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Finding index of character in Swift String
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Finding index of character in Swift String
It's time to admit defeat... In Objective-C, I could use something like: NSString* str = @"abcdef... It's time to admit defeat... In Objective-C, I could use something like: NSString* str = @"abcdefghi"; [str rangeOfString:@"c"].location; // 2 In Swift, I see something similar: var str = "abcdefghi" str.rangeOfString("c").startIndex ...but that just gives me a String.Index, which I can use to subscript back into the original string, but not extract a location from. FWIW, that String.Index has a p