lebronletchev
Programmer
Hello,
One way to do this:
You grab the words from a text file or memo field and stick them in another table. Let's say you have n records containing memo fields. You create an index table of keywords where each of these memo fields has certain number of records in the keyword table exactly as the number of words in it.
Memo Table
Rec Memo
1 Hello World
2 My name is Lebron
Keyword Table && you have to create this table
1 hello
1 world
2 my
2 name
3 is
4 lebron
Now you must search match words in keyword table.
Taking into consideration you have a third table with these data:
source table
ID Names
100 hello world
101 my name
How do you find for exact match in tbale of keywords for output memo table? Hard() Easy() Impossible()
Thanks
lebron letchev
One way to do this:
You grab the words from a text file or memo field and stick them in another table. Let's say you have n records containing memo fields. You create an index table of keywords where each of these memo fields has certain number of records in the keyword table exactly as the number of words in it.
Memo Table
Rec Memo
1 Hello World
2 My name is Lebron
Keyword Table && you have to create this table
1 hello
1 world
2 my
2 name
3 is
4 lebron
Now you must search match words in keyword table.
Taking into consideration you have a third table with these data:
source table
ID Names
100 hello world
101 my name
How do you find for exact match in tbale of keywords for output memo table? Hard() Easy() Impossible()
Thanks
lebron letchev