View source: R/convertUmlaut.R
convertUmlaut | R Documentation |
Convert German Umlaute (ae, oe, ue, ss) to ASCII. Conversion happens case sensitive for the first three.
convertUmlaut(x)
x |
Character string(s) containing German Umlaute |
Character strings
Berry Boessenkool, berry-b@gmx.de, Oct-Nov 2016
tools::showNonASCII
, gsub
,
iconv(x, to="ASCII//TRANSLIT")
## Not run:
link <- paste0("ftp://ftp-cdc.dwd.de/pub/CDC/observations_germany/climate/",
"monthly/kl/recent/KL_Monatswerte_Beschreibung_Stationen.txt")
weatherstations <- read.fwf(link, widths=c(6,9,10,16,11,8,41,99), skip=3)
examples <- trimws(weatherstations[c(153, 509, 587, 2, 651, 851),7])
examples
convertUmlaut(examples) # note how lower and upper case is kept
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.