tests/testthat/_snaps/modifiers.md

patterns coerced to character

Code
  . <- regex(x)
Condition
  Warning in `regex()`:
  Coercing `pattern` to a plain character vector.
Code
  . <- coll(x)
Condition
  Warning in `coll()`:
  Coercing `pattern` to a plain character vector.
Code
  . <- fixed(x)
Condition
  Warning in `fixed()`:
  Coercing `pattern` to a plain character vector.

useful error message for bad type

Code
  type(1:3)
Condition
  Error:
  ! `pattern` must be a character vector, not an integer vector.

useful errors for NAs

Code
  type(NA)
Condition
  Error:
  ! `pattern` must be a character vector, not `NA`.
Code
  type(c("a", "b", NA_character_, "c"))
Condition
  Error:
  ! `pattern` must be a character vector that does not contain NAs.


tidyverse/stringr documentation built on Aug. 23, 2024, 7:03 a.m.