Strings

str_c()

{stringr}

combines two or more strings

str_to_lower()

{stringr}

change text to lower case

str_glue()

{stringr}

format and interpolate a string with glue

str_detect()

{stringr}

detect presence of pattern in string

str_sub()

{stringr}

extract parts of a string

str_to_sentence()

{stringr}

change text to sentence case

str_replace_all()

{stringr}

replace all matched patterns in a string

paste()

{base}

concatenate character vectors with space between elements

str_replace()

{stringr}

replace first matched pattern in a string

str_length()

{stringr}

returns number of characters in a string

paste0()

{base}

concatenate character vectors with no space between elements

str_extract()

{stringr}

extract first matching patterns in a string

str_subset()

{stringr}

extract elements that match pattern

str_to_title()

{stringr}

change text to upper case

str_split()

{stringr}

split string into pieces

str_to_upper()

{stringr}

change text to upper case

The end!