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:@""];
|
My string is "apple" eg:
|
||||
|
|
|
|||
|
|
|
Escape double quotes character in the old string:
|
||||
|
|
|
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
|
||||
|
|
|
|||
|
|
Above code can be used to replace an character from string. |
||||
|
|