'\id '
文字列の後の最初の単語を取得するにはどうすればよいですか?
ストリング:
'\id hello some random text that can be anything'
パイソン
for line in lines_in:
if line.startswith('\id '):
book = line.replace('\id ', '').lower().rstrip()
私が得ているもの
book = 'hello some random text that can be anything'
私が欲しいもの
book = 'hello'