【发布时间】:2021-09-15 01:47:51
【问题描述】:
我有一个看起来像这样的大文本文件
some random : demo text for
illustration, can be long
and : some more
here is : another
one
我想要这样的输出
some random : demo text for illustration, can be long
and : some more
here is : another one
我尝试了一些奇怪的、明显有问题的正则表达式,例如 %s/\w*\n/ /g,但无法真正理解。
【问题讨论】: