gpt4 book ai didi

ios - 将RTF文件解析为NSArray- objective-c

转载 作者:行者123 更新时间:2023-12-01 18:23:12 30 4
gpt4 key购买 nike

我正在尝试将RTF文件中的“英语词典”解析为一个数组。

我本来可以工作,但是我不确定为什么现在不行。

在字典中,每个单词用换行符(\ n)分隔。到目前为止,我的代码是:

//loading the dictionary into the file and pull the content from the file into memory
NSData *data = [NSData dataWithContentsOfFile:@"wordList.rtf"];

//convert the bytes from the file into a string
NSString *string = [[NSString alloc] initWithBytes:[data bytes]
length:[data length]
encoding:NSUTF8StringEncoding];
//split the string around newline characters to create an array
NSArray *englishDictionary = [string componentsSeparatedByString:@"\n"];

当我尝试使用NSLog时,它只带有(空)...

我已经看过了: Objective-C: Reading a file line by line

但是尹允儿无法正常工作,无法得到答案。它的末尾打印有两个反斜杠,并在开始时打印了许多不必要的东西!

任何帮助将不胜感激!干杯!

最佳答案

尝试使用纯文本(txt)文件而不是rtf文件。 RTF文件还包含有关文本的格式信息。那就是阅读内容后看到的不必要的内容。

关于ios - 将RTF文件解析为NSArray- objective-c ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15877151/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com