Use the position function to find the word in the large field. e.g.
Syntax:
Position(HAYSTACK, NEEDLE,1,1) returns 2 when string value in variable NEEDLE is found starting in character position 2 of string HAYSTACK. The 1,1 part tells FM to start in position 1 and find the (1) first occurance of NEEDLE in HAYSTACK. I think there is also a simplier form that assumes one of these.
Examples
Position("Mississippi", "iss",1,1) returns 2 .
Position("Mississippi", "iss",1,2) returns 5 .
Position("Mississippi", "iss",3,1) returns 5 .
Left(Name, Position(Name, " ", 1, 1)-1) returns William, when Name is a text field that contains William Smith.
Right(Name, Length(Name) - Position(Name, " ", Length(Name), -1)) returns Smith .
This finds the string, and returns a position within the 'haystack' where the 'needle' is found.
--Tripod