vote up 1 vote down star

i have a string like this A. rahul VyAs

and i want to remove A. and the Space After The A. so that new string would be rahul VyAs

how do i achieve this?

flag

1 Answer

vote up 9 vote down check

You can use the NSString instance methods substringWithRange: or substringFromIndex:

NSString *str = @"A. rahul VyAs";
NSString *newStr = [str substringWithRange:NSMakeRange(3, [str length]-3)];

or

NSString *str = @"A. rahul VyAs";
NSString *newStr = [str substringFromIndex:3];
link|flag
I answered almost character for character on the substringFromIndex: part, so deleted and upvoted your answer as it is more complete – Xetius Jul 2 at 13:29
Thanks . – Perspx Jul 2 at 13:34

Your Answer

Get an OpenID
or

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