R/rawToDisplay.R

Defines functions rawToDisplay

rawToDisplay <- function( raws )
{
  raws[ raws <= charToRaw("\037") ] <- charToRaw(".")
  raws[ raws >= charToRaw("\177") ] <- charToRaw(".")
  rawToChar(raws)
}

Try the SASxport package in your browser

Any scripts or data that you put into this service are public.

SASxport documentation built on March 13, 2020, 1:59 a.m.