Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Text::Levenshtein - trouble

by Khen1950fx (Canon)
on Jul 12, 2012 at 13:25 UTC ( [id://981398]=note: print w/replies, xml ) Need Help??


in reply to Text::Levenshtein - trouble

Text::Levenshtein is returning in list context, but scalar context is what should be happening. You could force scalar context by using scalar. For example:
#!/usr/bin/perl -l use autodie; use strictures 1; use Devel::SimpleTrace; use strict qw/refs/; use Text::LevenshteinXS qw/distance/; my $x = scalar distance("history", "history"); my $y = scalar distance("gistory", "history"); my $z = scalar distance("history", "hustory"); print $x, "\n", $y, "\n", $z; use strict qw/refs/; use Text::Levenshtein::Damerau qw/edistance/; $x = scalar edistance("history", "history"); $y = scalar edistance("gistory", "history"); $z = scalar edistance("history", "hustory"); print $x, "\n", $y, "\n", $z; use strict qw/refs/; use Text::Levenshtein; $x = scalar distance("history", "history"); $y = scalar distance("gistory", "history"); $z = scalar distance("history", "hustory"); print $x, "\n", $y, "\n", $z;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://981398]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (5)
As of 2024-04-24 10:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found