Tie::Hash::Approx - Approximative match of hash keys using String::Approx


Tie-Hash-Approx documentation  | view source Contained in the Tie-Hash-Approx distribution.

Index


NAME

Top

Tie::Hash::Approx - Approximative match of hash keys using String::Approx

SYNOPSIS

Top

  use Tie::Hash::Approx;

  my %hash;
  tie %hash, 'Tie::Hash::Approx';

  %hash = (
    key  => 'value',
    kay  => 'another value',
    stuff => 'yet another stuff',
  );

  print $hash{'key'};  # prints 'value'
  print $hash{'koy'};  # prints 'another value' or 'value'
  print $hash{'staff'}; # prints 'yet another stuff'

  print tied(%hash)->FETCH('koy'); # prints 'value' and 'another value'

  delete $hash{kee};   # deletes $h{key} and $h{kay}

DESCRIPTION

Top

Following the idea of Tie::Hash::Regex, this module is an attempt to make fuzzy matches on hash keys. The module first tries to fetch the exact key of the hash, and failing that, the key is passed to the String::Approx' amatch function. Note that you can't (yet) pass modifiers to amatch.

To fetch multiple matching keys, you'll have to use something like:

 @all_matches = tied(%h)->FETCH('the key');

Note also the deleting a hash key will delete all the approximate matches, unless you provide the exact match of the key.

TODO

Top

Specify the "fuzziness" of the match (cf. the modifiers option in String::Approx).

AUTHOR

Top

Briac Pilpre < briac @ pilpre . com >

Thanks to Dave Cross for making Tie::Hash::Regex in the first place!

COPYRIGHT

Top

SEE ALSO

Top

perl(1). perltie(1). Tie::Hash. String::Approx


Tie-Hash-Approx documentation  | view source Contained in the Tie-Hash-Approx distribution.