Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文件,其中每一行都有多个用空格分隔的句子。有时一个句子可能会延伸到下一行。我想提取这些用空格分隔的句子。我的代码成功地提取了由空格分隔的同一行上的句子,但因为它是逐行读取的。所以,当一个句子扩展到下一行时,问题就来了。
将每次迭代中未使用的部分存储在临时缓冲区中。在下一次迭代中包含缓冲区(附加在读取行的开头)。