Skip to content

ENH: Add Series.str.casefold #25419

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Feb 28, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
minor
  • Loading branch information
charlesdong1991 committed Feb 24, 2019
commit 522c0213e711b6e295c3152ef91c45fe3f9addb1
2 changes: 1 addition & 1 deletion doc/source/user_guide/text.rst
Original file line number Diff line number Diff line change
Expand Up @@ -600,13 +600,13 @@ Method Summary
:meth:`~Series.str.partition`;Equivalent to ``str.partition``
:meth:`~Series.str.rpartition`;Equivalent to ``str.rpartition``
:meth:`~Series.str.lower`;Equivalent to ``str.lower``
:meth:`~Series.str.casefold`;Equivalent to ``str.casefold``
:meth:`~Series.str.upper`;Equivalent to ``str.upper``
:meth:`~Series.str.find`;Equivalent to ``str.find``
:meth:`~Series.str.rfind`;Equivalent to ``str.rfind``
:meth:`~Series.str.index`;Equivalent to ``str.index``
:meth:`~Series.str.rindex`;Equivalent to ``str.rindex``
:meth:`~Series.str.capitalize`;Equivalent to ``str.capitalize``
:meth:`~Series.str.casefold`;Equivalent to ``str.casefold``
:meth:`~Series.str.swapcase`;Equivalent to ``str.swapcase``
:meth:`~Series.str.normalize`;Return Unicode normal form. Equivalent to ``unicodedata.normalize``
:meth:`~Series.str.translate`;Equivalent to ``str.translate``
Expand Down