R/qm.R

Defines functions qm

Documented in qm

#' qm
#' 
#' Wraps an input in quotation marks.
#' 
#' @param x Character or Numeric.
#' 
#' @return A character string that begins and ends with quotation marks.
#' @author Jonathan A. Greenberg
#' 
#' @examples {
#' qm("Hi!")
#' qm(42) 
#' }
#' @export

qm <- function(x)
{
	paste('"',x,'"',sep="")
}

Try the gdalUtils package in your browser

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

gdalUtils documentation built on Feb. 14, 2020, 1:08 a.m.