import re
text="Phone: (111) 311-1111\nDesired Name:   Friday twk-test Date of Birth:   01/01/1988"
pattern=r"\bDesired Name:\s*([^\W\d_]+(?:[\s-]+[^\W\d_]+){1,2})"
match = re.search(pattern, text)
if match:
	print(match.group(1))