Tagged Questions
22
votes
3answers
1k views
Fuzzy Regular Expressions
In my work I have with great results used approximate string matching algorithms such as Damerau–Levenshtein distance to make my code less vulnerable to spelling mistakes.
Now I have a need to match ...
3
votes
2answers
133 views
approximate RegEx in python with TRE: strange unicode behavior
I am trying to use the TRE-library in python to match misspelled input.
It is important, that it does handle utf-8 encoded Strings well.
an example:
The German capital's name is Berlin, but from the ...
1
vote
3answers
825 views
Fuzzy Text Search: Regex Wildcard Search Generator?
I'm wondering if there is some kind of way to do fuzzy string matching in PHP. Looking for a word in a long string, finding a potential match even if its mis-spelled; something that would find it if ...
0
votes
3answers
155 views
TSQL Query for analyzing Text
I have a table that has ordernumber, cancelled date and reason.
Reason field is varchar(255) field and it was written by many different sales rep and really hard to group by the reason category I need ...