This is what ive made so far:
I have made a Database.mdf that contains a table that Includes 3 diffrent Column Names.

1:"ID" This one i set to an primary key and i have also made it automaticlly put a number in order to the list. Like 1,2,3,4,5 for each data added. Data Type for this is int.
2:"WordCombination" Were i enter my word combination that i want it to look for)
3."TypeofCombination" Were i enter what the program should add to what i typed in texbox1 if it contains the WordCombination.

I want my program to se if texbox1 contains any of those WordCombinations in my database. And if thats true, Then i want it to show whats in the TypeofCombination + the text in texbox1 in texbox2.

Example:
This is how ive made the database


And this is how i want my program to work:

If i enter "What do you want ?" in Textbox1 i want the program to find that "What do you want ?" contains "you want" like in ID:1 WordCombination:you want. So becuse this is ture it should enter TypeofCombination in this case "Question:" + what i entered in Textbox1 to show in Textbox2.

So if i write "What do you want ?" and click start. Textbox2 should show "Question: What do you want ?"

If i Write "My name is Jake" and click start. Textbox2 should show "Answer: My name is Jake"

If I Write "hello you Hi there Jacob" and click start. Textbox2 should show "Greeting: hello you Hi there Jacob"

Like this


And i Should be able to add and delete Word Combinations Without having to change the program.

Big Thanks to anyone who could help me with this.