vote up 1 vote down star

Are there anything similar to an indexOf function in the NSString objects?

flag

1 Answer

vote up 7 vote down check

Use -[NSString rangeOfString:]:

- (NSRange)rangeOfString:(NSString *)aString;

Finds and returns the range of the first occurrence of a given string within the receiver.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.