NSTask を使用して実行したシェル コマンドの出力を解析しようとしています。特定の部分文字列を探すだけで十分ですが、部分文字列だけが見つかりません。
これまでの私のコード:
NSPipe *pipe;
pipe = [NSPipe pipe];
[task setStandardOutput: pipe];
NSFileHandle *file;
file = [pipe fileHandleForReading];
[task launch];
NSData *data;
data = [file readDataToEndOfFile];
NSString *string;
string = [[NSString alloc] initWithData: data
encoding: NSUTF8StringEncoding];
NSLog(string);
if([string rangeOfString:@"Connection refused"].location != NSNotFound) {
NSLog(@"found");
} else {
NSLog(@"not found");
}
検索された部分文字列が変数stringに含まれていても、常に「見つかりません」と出力されます。前もって感謝します。