import re
strng ="Fiscal Year Ended March 31, 2018 Total Year (in $000's)"
m = re.search(r"(.*)\b(20[012]\d)\b(.*)",strng)
if m:
	print("YEAR: {}".format(m.group(2)))
	print("REST: {}{}".format(m.group(1),m.group(3)))