I have a one NSString & I want to remove some characters from it, when the first comma is found in it.
ex. str = @"0,1,2,3";
output - > str = @"1,2,3";
How to do this. Can anyone help me please to sort out this issue.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The generic case:
It doesn’t create a crash if the string hasn’t a comma.