entities = ({confidence = "<null>"; end = 113; entity = DATE; extractor = "ner_spacy";start = 103;value = "five years";
},
{confidence = "<null>"; end = 177;entity = ORG; extractor = "ner_spacy";start = 163; value = "xyz Company";
}
);
This is the backend data, I need to display in string with remove and add the new values in a string text:
Example: "In your {{years_of_experience}} of experience at {{ORG}}, what kind of process improvements or standards setup?"
Answer : Array of 0 ---> five years and Array of 1 ---> xyz Company Instead of open and closed curly brackets, I need to show this text of array 0 and 1.
In your five years of experience at xyz company, what kind of process improvements or standards setup?