rx_start_of_line: Match the expression only if it appears from beginning of...

Description Usage Arguments Examples

View source: R/rules.R

Description

Control whether to match the expression only if it appears from the beginning of the line.

Usage

1
rx_start_of_line(.data = NULL, enable = TRUE)

Arguments

.data

Expression to append, typically pulled from the pipe %>%

enable

Whether to enable this behavior, defaults to TRUE

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
rx_start_of_line(enable = TRUE)
rx_start_of_line(enable = FALSE)

# create expression
x <- rx() %>%
  rx_start_of_line() %>%
  rx_find("apple")

grepl(x, "pineapple") # should be false
grepl(x, "apple")     # should be true

RVerbalExpressions documentation built on Nov. 6, 2019, 5:08 p.m.