import re

s1 = '87, 72 Start I am a sentence finish'
print(re.sub(" Start.*$", '', s1))
