As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
I have a Collection with a string property "Title".
One of the entities has Title = @"Aris" but querying withExactMatchForValue only returns that entity when user types @"Aris" while I want it fetched when @"ar" is typed.
In other words,how can I search for close match on a Collection?
withExactMatchForValue only returns objects that exactly match the supplied value. We don't support arbitrary text search.
M
Morgan
said
about 9 years ago
Aris, I just want to add to what Mike said. There is a way to perform a straight forward way to add case-sensitive anchored regex query with the platform. Exact match is obviously supported.
Checkout the mongo [query docs](http://docs.mongodb.org/manual/reference/operator/query/ "query docs") for what's possible (we've disabled all uses of $regex but anchored and all uses of $where).
A
Aris Sarris
said
about 9 years ago
Using [KCSQuery queryOnField: withRegex: ] with the appropriate regular expression ,I managed to get the job done!
Aris Sarris
I have a Collection with a string property "Title".
One of the entities has Title = @"Aris" but querying withExactMatchForValue only returns that entity when user types @"Aris" while I want it fetched when @"ar" is typed.
In other words,how can I search for close match on a Collection?
Thanks