特定の単語を見つけて、対応する2行を読みたいと思います。
元 :
りんご
xxxxxxxxxxxxxxxxxx
yyyyyyyyyyyyyyyyyy
サムスン
qqqqqqqqqqqqqqqq
wwwwwwwwwwwwwwww
ノキア
ttttttttttttttttt
zzzzzzzzzzzzzzzzz
「apple」を検索すると取得したいのですがapple
、2行目も(yyyyyyyy
)。以下のコードで試しましたが、機能しません:
NSString *contentString = [NSString stringWithContentOfFile:path/to/your/file.txt encoding:textEncoding error:&error];
if (!error) {
NSRange range = [contentString rangeOfString:yourKeyword];
......