View source: R/DoubleMetaphone.R
DoubleMetaphone | R Documentation |
DoubleMetaphone
converts strings to double metaphone phonetic codes.
DoubleMetaphone(str)
str |
A character vector whose strings are to be encoded by double metaphone algorithm. |
An implementation of the Double Metaphone phonetic algorithm in R
. If
non-ASCII characters encountered in the input character vector str
, a
warning is issued and they are transliterated so that the accented characters
are converted to their ASCII unaccented versions.
Returns a list with two character vectors of the same length as the input vector. The first character vector contains the primary double metaphone encodings, while the second character vector contains the alternate encodings.
The C
code for the double metaphone
algorithm was adapted from Maurice Aubrey's perl module hosted at the
gitpan/Text-DoubleMetaphone
public
github library along with the corresponding
license
information.
In case of non-ASCII characters in strings, a warning is issued and accented characters are converted to their ASCII unaccented versions.
Philips, Lawrence. 2000. "The Double Metaphone Search Algorithm." C/C++ Users Journal 18 (6): 38-43. https://dl.acm.org/doi/10.5555/349124.349132.
phonetic
,
phonetics
# Return the primary and secondary Double Metaphone encodings for a character vector.
str1 <- c("Jyothi", "Jyoti")
str2 <- c("POLLACHI", "BOLLACHI")
DoubleMetaphone(str1)
DoubleMetaphone(str2)
## Not run:
# Issue a warning in case of non-ASCII characters.
str3 <- c("J\xf5geva", "Jogeva")
DoubleMetaphone(str3)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.