char.get_between_separators: Return everything between first occurence of first separator...

Description Usage Arguments Examples

View source: R/string.R View source: R/.ipynb_checkpoints/string-checkpoint.R

Description

Return everything between first occurence of first separator and first occurence of second separator after the first separator.

Usage

1
2
char.get_between_separators(string = "", first_separator = ",",
  second_separator = ",", include_sep_in_output = FALSE)

Arguments

string

A character string.

first_separator

Optional. Default ",".

second_separator

Optional. Default ",".

include_sep_in_output

Optional. Include the separators in the output. Default FALSE.

Examples

1
2
3
4
5
str <- "I am smart enough, good looking enough, and gosh darn it; people like me."
get_between_separators(str)
[1] "good looking enough"
char.get_between_separators(str, second_separator = ";")
[1] "good looking enough, and gosh darn it"

dads2busy/dataplumbr documentation built on July 2, 2021, 3:24 a.m.