[Migrated content. Thread originally posted on 23 March 2009]
I am using AcuCOBOL & VisionFile.When I create a search functionality in my codes, I use the file's keys. If the users search by the keys, I will do like this:
For example, search a name "zigby" in a file FILENAME.
FILENAME has key F-NAME.
MOVE "zigby" TO F-NAME.
START FILENAME KEY IS NOT LESS THAN F-NAME
READ FILENAME NEXT
IF F-NAME = "zigby" THEN
PERFORM I-FIND-IT
END-IF
But now the user want to advanced search function such as "wildcards '*'" search, I don't think only AcuCOBOL & VsionFiles could do that by keys.
For example, the user wants searching "*igby".
What can I do now?
Is there any other way to do that?
Thanks for any ideas and suggestions.



