我有以下字符串:
1) there is a problem 2) There appears to be a bug 3) stuck on start screen.
我希望得到文本后1)
,2)
和3)
.这就是我要找的东西:
['there is a problem', 'There appears to be a bug', 'stuck on start screen']
我尝试使用re.split
并拆分\d+
,但这并没有给我我想要的东西.我想保持通用的解决方案,因此,如果万一有一个4)
或5)
以上我仍然可以检索的文本.
任何帮助将不胜感激.
您可以使用以下正则表达式(请参阅正则表达式演示):
\d+\)\s*
它匹配:
\d+
- 一个或多个数字
\)
- 文字 )
\s*
- 零个或多个空白符号.
请参阅代码演示
import re s = "1) there is a problem 2) There appears to be a bug 3) stuck on start screen."; print ([x for x in re.split(r"\d+\)\s*", s) if x]); # => ['there is a problem ', 'There appears to be a bug ', 'stuck on start screen.']