Tagged Questions

TRE is written in C and offers bindings for Perl, Python and Haskell. It extends non-fuzzy regular expression matching by defining the number and weight of error that will still lead to a positive match.

learn more… | top users | synonyms

22
votes
3answers
2k 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
150 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
2answers
203 views

Loading c libraries from php

in a recent project I've come really need the lib tre matching library. However the project is in php, and there are no php bindings for the library. I've tried to google how to create an interface ...
1
vote
1answer
134 views

Finding multiple regex hits using approximate matching via the tre library

Using C, I'm trying to find the location and number of matches of a substring within another parent string. Because I also need to include approximate (hamming distance) matches, I'm using the tre ...