import re
strings = [
'title : Booking things author J smith',
'title : Unbe God author:  K. sweet'
]
for x in strings:
	m = re.search(r"(?:title\s*:?\s*)([\w\s]+)(?=author)", x)
	if m:
		print(m.group(1))