【发布时间】:2011-06-08 19:58:10
【问题描述】:
是否可以更改.readline() 方法在读取行时查找的换行符?我可能需要从文件对象中读取一个流,该流将用换行符以外的其他内容分隔,并且一次获取一个块可能很方便。 file 对象没有 readuntil,如果我可以使用 readline,我就不必创建它了
编辑:
我还没有在stdin以外的管道上尝试过;但这似乎有效。
class cfile(file):
def __init__(self, *args):
file.__init__(self, *args)
def readuntil(self, char):
buf = bytearray()
while True:
rchar = self.read(1)
buf += rchar
if rchar == char:
return str(buf)
用法:
>>> import test
>>> tfile = test.cfile('/proc/self/fd/0', 'r')
>>> tfile.readuntil('0')
this line has no char zero
this one doesn't either,
this one does though, 0
"this line has no char zero\nthis one doesn't either,\nthis one does though, 0"
>>>
【问题讨论】: