[FEA] Support the case=
argument to str.contains(...)
#13253
Labels
feature request
New feature or request
good first issue
Good for newcomers
Python
Affects Python cuDF API.
In Pandas
.str.contains()
function accepts acase=
argument that ignores case when searching for substrings:We don't currently support the
case=
argument, but I believe it can easily be supported by callinglower()
(or alternativelyupper()
) on both the input string Series as well as the substring before the call tocontains()
.The text was updated successfully, but these errors were encountered: