I am using Python and would like to match the last Noun before "needing".
text = "Charles and Kim are needing a good hot dog"
I must make that using re.findall and nltk
I tried the follow but with that show all the information before and I only need the last noun
post = re.findall(r'.*needing', text)[0]
I hope to get
Kim