假设有一个字符串 s,它看起来像这样:
s = 'Title: A title Date: November 23 1234 Other: Other information'
是否可以创建一个字典,它将是:
{'Title':'A title','Date':'November 23 1234','Other':'Other information'}
起初我想只是将它拆分到冒号所在的位置,但后来,不知道 Title 的值可能是什么,标题本身可能有冒号。唉,这个信息的来源也没有用逗号分隔,所以这也是一种痛苦。EG,你怎么能这样做:
s = 'Title: Example: of a title Date: November 23 1234 Other: Other information'
该示例中的标题为Example: of a title
.
我已经检查了这个问题,但它没有回答我的问题。
提前致谢。