I have a field that contains comma separated values which I want to perform suggestion on.
{
"description" : "Breakfast,Sandwich,Maker"
}
Is it possible to get only applicable token while performing suggest as you type??
For ex:
When I say break
, how can I get only Breakfast
and not get Breakfast,Sandwich,Maker
?
I have tried using commatokenizer but it seems it does not help