我需要正则表达式或 Python 的帮助来从一组字符串中提取子字符串。该字符串由字母数字组成。我只想要在第一个空格之后开始并在最后一个空格之前结束的子字符串,如下面的示例。
Example 1:
A:01 What is the date of the election ?
BK:02 How long is the river Nile ?
Results:
What is the date of the election
How long is the river Nile
当我这样做时,是否有一种简单的方法可以在某个字符之前或之后提取字符串?例如,我想从示例 2 中给出的字符串中提取日期或日期。
Example 2:
Date:30/4/2013
Day:Tuesday
Results:
30/4/2013
Tuesday
我实际上已经阅读过正则表达式,但它对我来说非常陌生。谢谢。