I was thrilled to see that dbplyr supports the str_detect() command. However, it doesn't work properly with regular expressions when I do a query on a SQL Server database via a ODBC connection: the special character "." is, for instance, not interpreted as a wildcard, but as the character that it is, so a period. Are there any workarounds?
For example,
my_tbl%>%filter(str_detect(COL1, "A123.4"))
will match "A123.4", but not "A123x4".