Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列がとても長いので、単語や文字を調べてみたいと思います。C#と同等のObjectiveCの関数はありますか?
string string name; string[0];
文字と単語の両方を探したい場合は、これが少し良いと思います。characterAtIndex は、単一の char のみに使用することを目的としており、文字列に繰り返しを追加し、探しているものをそれぞれチェックします。
NSRange range = [@"test12" rangeOfString:@"t12"]; NSLog(@"Position %d: Length %d", range.location, range.length);