Aliases: showNonASCII showNonASCIIfile
Keywords: utilities
### ** Examples out <- c( "fa\xE7ile test of showNonASCII():", "\\details{", " This is a good line", " This has an \xfcmlaut in it.", " OK again.", "}") f <- tempfile() cat(out, file = f, sep = "\n") showNonASCIIfile(f)
unlink(f)