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.
我想用每 4 个空格标记一个输入流。因此,每当我调用类似 next() 的东西时,它都会从该行返回 4 个单词……如果输入流中没有 4 个单词,因为它已经到达末尾,则返回输入流中剩下的任何内容
我正在寻找一个正则表达式...
您应该能够使用 next() 将字节添加到字符串的末尾,为已经找到的单词数量创建一个计数变量,并检查该字节是否是空格 (' ')。然后在方法的末尾返回字符串。这样您就可以获取已发送的字节,并将它们从 next() 方法的流中删除。