Fixed matches

fixed() allows to opt-out of the regular expression rules or to ignore case

str_view(c("", "a", "."), fixed("."))
## [3] │ <.>
str_view("x X", "X")
## [1] │ x <X>
str_view("x X", fixed("X", ignore_case = TRUE))
## [1] │ <x> <X>