on 2024 Jun 13 3:05 PM
In mobile applications like SAP Asset Manager users can filter results. The filter(search in pages) is case insensitive because everything is set - tolower(string). That is good. And then the "query option" is an exact match. But is there a way how to make filters (query option) not exact match - ignoring diacritics?
For example. When a work order is named "Plán" (with diacritics), but a user types the word "Plan" (without diacritics) into a search field, the user gets zero results. It is obvious why, because 'a' != 'á'. But is there a way how to show results with similar words - with diacritics and vice versa?
Request clarification before answering.
You would need to write your own rule to do that. If you do a find on VSCode with the keyword "searchString", you will find implementations of how to get the search string and modify it for the query options.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
92 | |
15 | |
8 | |
7 | |
5 | |
3 | |
3 | |
3 | |
3 | |
2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.