would be possible to Compare two strings to find Alliteration and Assonance?
i use mainly javascript or php
|
would be possible to Compare two strings to find Alliteration and Assonance? i use mainly javascript or php |
|||
|
|
|
I'm not sure that a regex would be the best way of building a robust comparison tool. A simple regex might be part of a larger solution that used more sophisticated algorithms for non-exact matching. There are a variety of readily-available options for English, some of which could be extended fairly simply to languages that use the Latin alphabet. Most of these algorithms have been around for years or even decades and are well-documented, though they all have limits. I imagine that there are similar algorithms for non-Latin alphabets but I can't comment on their availability firsthand. Phonetic Algorithms The Soundex algorithm is nearly 100 years old and has been implemented in multiple programming languages. It is used to determine a numeric value based on the pronunciation of a string. It is not precise but it may be useful for identifying similar sounding words/syllables. I've experimented with it in MS SQL Server and it is available in PHP. http://php.net/manual/en/function.soundex.php I have not worked with the metaphone algorithm, but Wikipedia and the PHP docs claim it is more accurate than Soundex when dealing with the English language. There are numerous implementations available (Wikipedia has a long list at the end of the article) and it is included in PHP. http://www.php.net/manual/en/function.metaphone.php Word Deconstruction Levenshtein can be used to suggest alternate spellings (for example, to normalize user input) and might be useful as part of a more granular algorithm for alliteration and assonance. http://www.php.net/manual/en/function.levenshtein.php Logically, it would help to understand the syllabication of the words in the string so that each word could be deconstructed. The syllable break could resolve ambiguity as to how two adjacent letters should be pronounced. This thread has a few links: Sample with PHP Snippets Lastly, here's a simple alliteration analyzer that turned up while doing a little reading on the subject: http://coding.pressbin.com/99/How-my-Alliteration-Analyzer-works |
||||
|
To find alliterations in a text you simply iterate over all words, omitting too short and too common words, and collect them as long as their initial letters match.
Results:
For more advanced parsing and also to find assonances and rhymes you first have to translate a text into phonetic spelling. You didn't say which language you're targeting, for English there are some phonetic dictionaries available online, for example from Carnegie Mellon: ftp://ftp.cs.cmu.edu/project/fgdata/dict |
|||
|
|