I\'m parsing json with SBJson. I receive an error \"-JSONValue failed. Error is: Unescaped control character [0x09]\" when parsing my json string, it has unencoded tab. How
You can use stringByReplacingOccurrencesOfString:withString::
stringByReplacingOccurrencesOfString:withString:
NSString * newJsonString = [oldJsonString stringByReplacingOccurrencesOfString:@"\t" withString:@"\\t"];