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
All relevant stringr functions now preserve names (@jonovik, #575).
str_like(ignore_case) is deprecated, with str_like() now always case sensitive to better follow the conventions of the SQL LIKE operator (@edward-burn, #543).
In str_replace_all(), a replacement function now receives all values in a single vector. This radically improves performance at the cost of breaking some existing uses (#462).
New features
New vignette("locale-sensitive") about locale sensitive functions (@kylieainslie, #404)
New str_ilike() that follows the conventions of the SQL ILIKE operator (@edward-burn, #543).
New str_to_camel(), str_to_snake(), and str_to_kebab() for changing "programming" case (@librill, #573 + @arnaudgallou, #593).