我做了这个正则表达式((\s\s\s.*\s)*)
。这意味着 3 个空格或制表符,之后是多个字符和一个空格或制表符或行尾。如何将我得到的每一行存储到一个列表中?
所以,如果我有这样的事情:
___The rabbit caught the lion\n
___The tiger got the giraffe\n
___The owl hit the man\n
输出是这样的:
list=[The rabbit caught the lion, The tiger got the giraffe, The owl hit the man]
顺便提一下,我对我拥有的每个其他模式都使用了组。