You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
grepl("^a_fixed_string$", x) is the same as x == "a_fixed_string", rather than being replaced with startsWith() or endsWith(), == is a better replacement.
The text was updated successfully, but these errors were encountered:
Replacement for #1166.
grepl("^a_fixed_string$", x)
is the same asx == "a_fixed_string"
, rather than being replaced withstartsWith()
orendsWith()
,==
is a better replacement.The text was updated successfully, but these errors were encountered: