You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
376 B
Plaintext
19 lines
376 B
Plaintext
7 years ago
|
% Generated by roxygen2: do not edit by hand
|
||
|
% Please edit documentation in R/common.R
|
||
|
\name{simpleCap}
|
||
|
\alias{simpleCap}
|
||
|
\title{Capitalise first letter in each word in string}
|
||
|
\usage{
|
||
|
simpleCap(x)
|
||
|
}
|
||
|
\arguments{
|
||
|
\item{x}{string of one or more words}
|
||
|
}
|
||
|
\value{
|
||
|
string
|
||
|
}
|
||
|
\description{
|
||
|
Copied verbatim from https://stackoverflow.com/a/6364905
|
||
|
Also see R doc of base::toupper()
|
||
|
}
|