similar_text(3) php man page | unix.com

Man Page: similar_text

Operating Environment: php

Section: 3

SIMILAR_TEXT(3) 							 1							   SIMILAR_TEXT(3)

similar_text - Calculate the similarity between two strings

SYNOPSIS
int similar_text (string $first, string $second, [float &$percent])
DESCRIPTION
This calculates the similarity between two strings as described in Programming Classics: Implementing the World's Best Algorithms by Oliver (ISBN 0-131-00413-1). Note that this implementation does not use a stack as in Oliver's pseudo code, but recursive calls which may or may not speed up the whole process. Note also that the complexity of this algorithm is O(N**3) where N is the length of the longest string.
PARAMETERS
o $first - The first string. o $second - The second string. o $percent - By passing a reference as third argument, similar_text(3) will calculate the similarity in percent for you.
RETURN VALUES
Returns the number of matching chars in both strings.
SEE ALSO
levenshtein(3), soundex(3). PHP Documentation Group SIMILAR_TEXT(3)
Related Man Pages
pgasetrealinitpercent(2) - debian
levenshtein(3) - php
xdiff_string_rabdiff(3) - php
text::soundex(3pm) - redhat
string::similarity(3pm) - debian
Similar Topics in the Unix Linux Community
finding matches between multiple files from different directories
Concept Architecture of Unix Systems
Obtain the names of the flanking regions
Gathering data in columns from multiple files
Unable to identify the special characters beyond the range of "[\x80-\xFF]"