Hello, I need to do a selection of the datarecords befere print they in a web.
for example, if I search for pen, the searcher try :
pen pencil ballpen
I only want to extract pen. How can I do?
I use php. thanks.
Hi,
You'll want to use an extractor pattern where the token intended to extract the "pen" data contains the following extractor pattern
pen
That is, it will match only the string of characters "pen".
Hope this helps.
Kind regards,
Todd Wilson [email protected]
select a string
Hi,
You'll want to use an extractor pattern where the token intended to extract the "pen" data contains the following extractor pattern
pen
That is, it will match only the string of characters "pen".
Hope this helps.
Kind regards,
Todd Wilson
[email protected]