Description Usage Arguments Value Examples
Convert Morse characters back to text
1 | morse_to_text(morse)
|
morse |
String with Morse characters separated by spaces. Must use |
A string of letters from whatever valid Morse code it can find in the input. It's fault tolerant - it will ignore bad Morse code.
1 2 3 4 | text_to_morse_chars("Hello how are you") %>% morse_to_text()
# This is fault tolerant of bad Morse code:
morse <- ".... . ..-.. .-AA.. ---"
morse_to_text(morse)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.