我的目標是僅在雙空格上分割字符串。請參閱下面的示例字符串以及使用常規拆分函數的嘗試。僅使用python分割多個空格上的字符串
我嘗試
>>> _str='The lorry ran into the mad man before turning over'
>>> _str.split()
['The', 'lorry', 'ran', 'into', 'the', 'mad', 'man', 'before', 'turning', 'over']
理想的結果:
['the lorry ran', 'into the mad man', 'before turning over']
如何在理想的結果得出任何建議?謝謝。
它只有2個空格或大於1的任意數量的空格嗎? –
Hi @SukritKalra,2個或更多的空間。謝謝。 – Tiger1
我添加了一個答案,它可以在任何大於2的空格上分割。 –