diff --git a/Bluepill-cli/Bluepill-cli/Bluepill/Reporters/BPReporters.m b/Bluepill-cli/Bluepill-cli/Bluepill/Reporters/BPReporters.m index 883eb4be..5fa01b5d 100644 --- a/Bluepill-cli/Bluepill-cli/Bluepill/Reporters/BPReporters.m +++ b/Bluepill-cli/Bluepill-cli/Bluepill/Reporters/BPReporters.m @@ -151,6 +151,8 @@ + (NSString *)xmlSimpleEscape:(NSString *)originalString { [string replaceOccurrencesOfString:@"'" withString:@"'" options:NSLiteralSearch range:NSMakeRange(0, [string length])]; [string replaceOccurrencesOfString:@">" withString:@">" options:NSLiteralSearch range:NSMakeRange(0, [string length])]; [string replaceOccurrencesOfString:@"<" withString:@"<" options:NSLiteralSearch range:NSMakeRange(0, [string length])]; + // Replace UTF-8 Backspace + [string replaceOccurrencesOfString:@"\x08" withString:@"" options:NSLiteralSearch range:NSMakeRange(0, [string length])]; return [NSString stringWithString:string]; }