Я предлагаю разделить строку с вашим шаблоном:
import re
s = "Text: 0.12345 and -12.34433 and more to come"
results = re.split(r"\s*-?[0-9]+\.[0-9]+\s*", s)
print(results)
См. Демо Python .
В случае появления каких-либо пустых элементов, как в случаях, когдасовпадения появляются в начале / конце строки, удалите их с помощью filter
:
import re
s = "0.12345 and -12.34433 and more to come 0.54321 and -27.87654"
results = re.split(r"\s*-?[0-9]+\.[0-9]+\s*", s)
# print(results) # => ['', 'and', 'and more to come', 'and', '']
print(list(filter(None, results))) # => ['and', 'and more to come', 'and']
См. еще одну демонстрацию Python .