up vote 3 down vote favorite
4
share [g+] share [fb]

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?

link|improve this question

feedback

1 Answer

up vote 31 down vote accepted

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|improve this answer
I answered almost character for character on the substringFromIndex: part, so deleted and upvoted your answer as it is more complete – Xetius Jul 2 '09 at 13:29
Thanks . – Alex Rozanski Jul 2 '09 at 13:34
feedback

Your Answer

 
or
required, but never shown

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