R/fn_01.R

require(stringr)

#' fn_01_01
#'
#' The user will modify the function to return a value according to the
#' specification.
#'
#' @return  a regular expression that matches the sequence of characters "the"
#' 
fn_01_01 <- function(){

  result <- ""
  
  return(result)
}

#' fn_01_02
#'
#' The user will modify the function to return a value according to the
#' specification.
#'
#' @return  a regular expression that matches the word "the".
#' 
fn_01_02 <- function(){
  
  result <- ""
  
  return(result)
}

#' fn_01_03
#'
#' The user will modify the function to return a value according to the
#' specification.
#'
#' @return  a regular expression that matches the words "the" and "The".
#' 
fn_01_03 <- function(){
  
  result <- ""
  
  return(result)
}

#' fn_01_04
#'
#' The user will modify the function to return a value according to the
#' specification.
#'
#' @return  a regular expression that matches five-letter words.
#' 
fn_01_04 <- function(){
  
  result <- ""
  
  return(result)
}
ijlyttle/tutrRegExp documentation built on May 18, 2019, 3:42 a.m.