encodeUTF8 {rrMisc}R Documentation

Encode text to UTF-8

Description

Encode text to UTF-8

Usage

encodeUTF8(df, ...)

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

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)

[Package rrMisc version 0.48 Index]