Agrep: Difference between revisions
No edit summary |
No edit summary |
||
Line 46: | Line 46: | ||
It selects the best-suited algorithm for the current query from a variety of the known fastest (built-in) [[string searching algorithm]]s, including Manber and Wu's [[bitap algorithm]] based on [[Levenshtein distance]]s. |
It selects the best-suited algorithm for the current query from a variety of the known fastest (built-in) [[string searching algorithm]]s, including Manber and Wu's [[bitap algorithm]] based on [[Levenshtein distance]]s. |
||
agrep is also the [[search engine]] in the indexer program [[GLIMPSE]]. agrep is under a free ISC License<ref>[ |
agrep is also the [[search engine]] in the indexer program [[GLIMPSE]]. agrep is under a free ISC License<ref>[http://webglimpse.net/sublicensing/licensing.html open source license] since 18.09.2014</ref>. |
||
== Alternative implementations == |
== Alternative implementations == |
Revision as of 19:51, 18 October 2015
Developer(s) |
|
---|---|
Repository | |
Written in | C |
Operating system | |
Type | Pattern matching |
License | ISC open source license |
Website | www |
agrep (approximate grep) is a proprietary approximate string matching program, developed by Udi Manber and Sun Wu between 1988 and 1991, for use with the Unix operating system. It was later ported to OS/2, DOS, and Windows.
It selects the best-suited algorithm for the current query from a variety of the known fastest (built-in) string searching algorithms, including Manber and Wu's bitap algorithm based on Levenshtein distances.
agrep is also the search engine in the indexer program GLIMPSE. agrep is under a free ISC License[1].
Alternative implementations
A more recent agrep is the command-line tool provided with the TRE regular expression library. TRE agrep is more powerful than Wu-Manber agrep since it allows weights and total costs to be assigned separately to individual groups in the pattern. It can also handle Unicode.[2] Unlike Wu-Manber agrep, TRE agrep is licensed under a 2-clause BSD-like license.
FREJ (Fuzzy Regular Expressions for Java) open-source library provides command-line interface which could be used in the way similar to agrep. Unlike agrep or TRE it could be used for constructing complex substitutions for matched text.[3] However its syntax and matching abilities differs significantly from ones of ordinary regular expressions.
References
External links
- Wu-Manber agrep
- AGREP home page
- For Unix (To compile under OSX 10.8, add
-Wno-return-type
to theCFLAGs = -O
line in the Makefile)
- Entry for "agrep" in Christoph's Personal Wiki
- See also
- TRE regexp matching package
- cgrep a defunct command line approximate string matching tool
- nrgrep a command line approximate string matching tool
- agrep as implemented in R