encodeUTF8: Encode text to UTF-8

Description Usage Arguments Details Value Note Author(s) References See Also Examples

View source: R/format.R

Description

Encode text to UTF-8

Usage

1

Arguments

df

data.frame or character vector

...

arguments passed to further functions

Details

utility function for formating

Value

formatted object

Note

maybe of most use under Windows-Environment

Author(s)

Roland Rapold

References

none

See Also

other utility-functions in this R-package

Examples

1
2
3
4
5
6
7
8
9
d.test <- data.frame(a = 1:10,
                     b = letters[1:10],
                     c = c("ä", "ö", "ü", "è", "à", "%", "&", "¢", "@", "¬"))
d.test
encodeUTF8(d.test)

d.test <- c("ä", "ö", "ü", "è", "à", "%", "&", "¢", "@", "¬", "#")
d.test
encodeUTF8(d.test)

rrMisc documentation built on June 25, 2021, 3 a.m.