不正確なテキスト検索


10

以下のような任意の有用性があるgrepかさえもuniqが、不正確な検索のためには、または私はそれを自分で書く必要がありますか?

つまり、90%(数値は異なる場合があります)マッチング、またはそのようなものを調べます。たとえば、いくつかの文字列を含むファイルがあります。

abc123
abd123
abc223
qwe938

この場合、このようなユーティリティは最初の3つの文字列を返すか、類似していると言う必要があります。もちろん、grepやの場合のように、ファイルのコンテンツのパターンを知りませんuniq


これは非常にデータセット固有です。たとえば、メアリーはマリーのようですか、またはABCはBCDのようですか?データの実例を挙げていただけますか?
EightBitTony

回答:


19

agrepまたはtre-grepは、あなたが求めていることを行います。それらは「おおよその」正規表現一致/ grepです。詳細については、ウィキペディアの記事もご覧ください。

% tre-agrep --help | head             (05-23 16:53)
Usage: tre-agrep [OPTION]... PATTERN [FILE]...
Searches for approximate matches of PATTERN in each FILE or standard input.
Example: `tre-agrep -2 optimize foo.txt' outputs all lines in file `foo.txt'     that
match "optimize" within two errors.  E.g. lines which contain "optimise",
"optmise", and "opitmize" all match.

Regexp selection and interpretation:
  -e, --regexp=PATTERN      use PATTERN as a regular expression
  -i, --ignore-case         ignore case distinctions
  -k, --literal             PATTERN is a literal string


% agrep  | head                       (05-23 16:53)
usage: agrep [-@#abcdehiklnoprstvwxyBDGIMSV] [-f patternfile] [-H dir] pattern [files]

summary of frequently used options:
(For a more detailed listing see 'man agrep'.)
-#: find matches with at most # errors
-c: output the number of matched records
-d: define record delimiter
-h: do not output file names
-i: case-insensitive search, e.g., 'a' = 'A'
-l: output the names of files that contain a match
-n: output record prefixed by record number
-v: output those records that have no matches
-w: pattern has to match as a word, e.g., 'win' will not match 'wind'
-B: best match mode. find the closest matches to the pattern
-G: output the files that contain a match
-H 'dir': the cast-dictionary is located in directory 'dir'

それがまさに私が探しているものです。ありがとうございました。
ラッシュ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.