我正在尝试拆分一行看起来像这样的文本
host=randomhostid123 moreinfo id=otherstuffhere version="morestuff" type=TYPEA::TYPEB
我想使用 split 将其解析为
host=randomhostid123 moreinfo
id=otherstuffhere
version="morestuff"
type=TYPEA::TYPEB
为此,我正在使用
str.split('?[a-zA-Z]*=')
但是所有这一切都产生了原来的字符串我认为正则表达式看起来不错,但我是 python 正则表达式的新手