how to change ASCII code to characters ? like '@#32' to 'space' and '@#46' to 'fullstops(.)'. I
am getting these sort of numbers from service and I need to convert them to characters.
But I am getting huge data from server and this data consists of number of '
' like
characters in it. Don't know how to get rid of all those terms.
When I used below code, its not working..
NSCharacterSet *notAllowedChars = [[NSCharacterSet characterSetWithCharactersInString:@"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"] invertedSet];
NSString *resultString = [[description componentsSeparatedByCharactersInSet:notAllowedChars] componentsJoinedByString:@""];