RiTa
index
Name isRhyme()
Class RiLexicon
Description Returns true if the two words rhyme (that is, if their final stressed phoneme and all following phonemes are identical) else false. Note: returns false if wordA.equals(wordB) or if either (or both) are null;

Note: at present doesn't use letter-to-sound engine if either word is not found in the lexicon, but instead just returns false. TODO

Syntax
isRhyme(wordA, wordB);
Returns boolean
Usage Web & Application
Related