R/str_sentence_case.R

Defines functions str_sentence_case

Documented in str_sentence_case

#' str_sentence_case
#' 
#' Format a string in sentence case
#' 
#' @param string character string to transform
#' 
#' Sentance case is ...
#' 
#' @export

str_sentence_case <- function( string ) 
  stop( "Sentence case is not implemented yet.")
decisionpatterns/lettercase documentation built on May 23, 2020, 4:39 p.m.