Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My string is "apple"
I want it as apple only
how to replace those double quotes from my NSstring.

eg:

NSstring *str=[str stringByReplacingOccurrencesOfString:@""" withString:@""];
share|improve this question

5 Answers

NSString *str = @"\"apple\"";
    NSLog(@"%@",str);
    str = [str stringByReplacingOccurrencesOfString:@"\"" withString:@""];
    NSLog(@"after--%@",str);
share|improve this answer

Escape double quotes character in the old string:

NSString *str2 = [str stringByReplacingOccurrencesOfString:@"\"" withString:@""];
share|improve this answer

If you want any special character like ", &, ' to be as a part of a string, then use a backslash () escape character before that special character.

More about escape character

NSstring *str=[str stringByReplacingOccurrencesOfString:@"\"" withString:@""];
share|improve this answer
    NSString *s = @"\"a\""; // s = "a"
    NSString *str=[s stringByReplacingOccurrencesOfString:@"\"" withString:@""];
    NSLog(@"s: %@",str); //s: a
share|improve this answer
NSString *test = @"\"Apple\"";
NSLog(@"%@", test); 
NSCharacterSet *doNotWantTheseCharacters = [NSCharacterSet characterSetWithCharactersInString:@"\""];
test = [[test componentsSeparatedByCharactersInSet: doNotWantTheseCharacters] componentsJoinedByString: @""];
NSLog(@"%@", test);

Above code can be used to replace an character from string.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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