On Wed, 6 Mar 2024 13:46:55 -0500 Duncan Murdoch <murdoch.dun...@gmail.com> wrote:
> is this just a more or less harmless error, thinking that > the dot needs escaping I think it's this one. You are absolutely right that the dot doesn't need escaping in either TRE (which is what's used inside exportPattern) or PCRE. In PRCE, this regular expression would have worked as intended: # We do match backslashes by mistake. grepl('[\\.]', '\\') # [1] TRUE # In PCRE, this wouldn't have been a mistake. grepl('[\\.]', c('\\', '.'), perl = TRUE) # [1] FALSE TRUE -- Best regards, Ivan ______________________________________________ R-package-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-package-devel