Is there Anyway I can replace nouns from one strings to another. Like I have 2 strings
e.g.
original = "his name is Javed Aaqib.He lives in Karachi"
gen = " They call him Aab Khan. His residence is in Karachi."
Now here I want to replace fake noun (Aab Khan) with original noun (Javed Aaqib) i.e. after replacing gen should be "They call him Javed Aaqib"
I have extracted Named Entities using spacy but stuck in logic how to match the fake names them as there are multiple nouns in text.