-
This PHP script can be used to get synonyms and parts of speech of given words. It takes a given word and finds synonyms in a dictionary. If the exact word is not available, the script uses stemming algorithms to find synonyms of closer words. The script can also retrieve a list of parts of speech that include that given ...
-
This class can be used to generate stems from words encoded using UTF-8. It takes a text string with words encoded using UTF-8 and converts it into stems strings like the soundex algorithm does, so similar sounding words result in the same word. The class supports both English and Cyrillic words. Requirement: PHP5.0 or Higher
-
This script can be used to compute the stem of a Spanish word. It uses Porter's stemming algorithm to compute the stem of a given Spanish word. The script supports removing common suffixes and works with words encoded with UTF-8.
-
Porter Stemmer is a PHP5 only class to facilitate the stemming of word. This is the process of removing suffixs from words to produce their "stems", eg national -> nation, running -> run, adoption -> adopt.The public API is very simple, consisting of one function. The function takes two arguments, one being the word you wish to stem, and the ...
-
Italian Stemmer uses an stemming algorithm to processes an Italian words by removing common word endings and vowels, and mapping some consonant.The Italian words that sound similar will result in the same stem string.Requirements: PHP 5.0 or higher
-
This PHP class is a fairly faithful implementation of the Porter Stemming algorithm for reducing English words to their stems. The primary use of stemming words is in keyword indexing, if you're building a search application.
-
Porter Stemming Algorithm is a fairly faithful implementation of the Porter stemming algorithm that reduces English words to their stems.There is a deviation in the way compound words are stemmed, such as hyphenated words and words starting with certain prefixes. For instance, "international" should be reduced to "internation" and not "intern," but an unmodified version of the alorithm will do ...
-
Guaranix Full Text can be used to index texts for full text searching.Guaranix Full Text can build indexes of documents with support for stemming words (in Spanish or English), document idiom categorization, phrase search, etc..Guaranix Full Text can use a database as repository to store the index. Currently it supports SQLite and MySQL.


