Rev 46973 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/tools/man/showNonASCII.Rd% Part of the R package, http://www.R-project.org% Copyright 2008 R Core Development Team% Distributed under GPL 2 or later\name{showNonASCII}\alias{showNonASCII}\title{Highlight non-ASCII characters}\description{This function prints elements of a character vector which containnon-ASCII bytes, printing such bytes as a escape like \code{<fc>}.}\usage{showNonASCII(x)}\arguments{\item{x}{a character vector.}}\details{This was originally written to help detect non-portable text infiles in packages.It prints all lines of the files which contain non-ACII characters,preceded by the line number and with non-ASCII bytes highlighted\emph{via} \code{\link{iconv}(sub = "byte")}.}\examples{out <- c("fa\xE7ile test of showNonASCII():","\\\\details{"," This is a good line"," This has an \xfcmlaut in it."," OK again.","}")cat(out, file = "my.Rd", sep = "\n")showNonASCII(readLines("my.Rd"))unlink("my.Rd")}\keyword{utilities}