StrSpell | R Documentation |
The function splits a string into single characters and returns their representation in either the NATO phonetic alphabet or the Morse alphabet. The 26 code words in the NATO phonetic alphabet are assigned to the 26 letters of the English alphabet in alphabetical order as follows: Alfa, Bravo, Charlie, Delta, Echo, Foxtrot, Golf, Hotel, India, Juliett, Kilo, Lima, Mike, November, Oscar, Papa, Quebec, Romeo, Sierra, Tango, Uniform, Victor, Whiskey, X-ray, Yankee, Zulu. Digits 0-9 are also supported.
StrSpell(x, upr = "CAP", type = c("NATO", "Morse"))
x |
character, the string to be encoded. |
upr |
character, a shortcut to be used to characterise capital letters. Ignored if |
type |
the type of phonetic alphabet, either |
a character vector containing the code words
Andri Signorell <andri@signorell.net>
https://en.wikipedia.org/wiki/NATO_phonetic_alphabet
strsplit
# ... ever had to communicate a password by phone? ;-)
StrSpell("Yailov9teb6i")
paste(StrSpell("Andri", type="Morse"), collapse="|")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.