I have a table Template with following columns:
ID, [Text]
Suppose I have two records in a Template table,
1, ‘His full name is ##Full_Name##,he was born on ##Date_of_Birth## in city of ##Place_of_Birth##’
2, ‘I am ##First_Name##, I was born on ##Date_of_Birth##’
I want to find ##Full_Name##, ##Date_of_Birth## and ##Place_of_Birth## in a row.
In the other row there can be two match result which are ##First_Name## and ##Date_of_Birth## .
The output of the two records would be like that:
1, Full_Name, Date_of_Birth, Place_of_Birth
2, First_Name, Date_of_Birth
Can anyone help me?
Here it is: