Nirav Mehta
Nirav Mehta
This would be really useful. Is there an ETA for this?
Hi Guys, Would love to have this merged in the main Sharp release. Any ETA on that?
I revised the `matchingSubjects` function to support auto-complete, which also fixes fts5 errors with special characters in input. That code is here: https://github.com/niravmehta/placeholder/pull/4 (and not merged into this pull request...
I agree removing test cases is not a good idea. But I do not know the testing framework, and couldn't figure out how to write a proper test case. Will...
Here are some cases that didn't quite work, but can be improved greatly with postal code lookups. Some of these are misspells, some are insufficient. State name expansion is another...
I'm working on adding postal code support. Feedback welcome... Here's what I'm doing: **Objective: Expand postal code to admin1/2/3 names (state / county / region / locality..) and use expanded...
Some updates: - I implemented the above logic and it works quite well. - It relies on structured input, rather than a single line of address text. - I added...
For anyone who's interested, all my changes are here: https://github.com/niravmehta/placeholder/
Because of the truncation, searching for "Portland (Oregon) USA" yields match from Jamaica as well. And searching for "Borivali (East), MH, India" yields Borivali West as the first match. "3...
BTW, what I did was replace these characters with a space. `text = text.replace(/[-֊־‐‑﹣\(\)\[\]]/g, ' ').trim();` My guess is that giving more tokens to Placeholder, will allow it to perform...