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
Closes#8644
Multi-character case conversion support added for strings `to_upper` and `to_lower` is reused for `capitalize` and `title` functions. For example, converting from a single character `ʼn` to its upper-case equivalent is actually two distinct characters `'N` (apostrophe and capital-N). This is different than conversion of a single multi-byte character to another single multi-byte character with different byte lengths. Here a single character is converted into two characters.
Authors:
- David Wendt (https://github.com/davidwendt)
Approvers:
- Ram (Ramakrishna Prabhu) (https://github.com/rgsl888prabhu)
- Mark Harris (https://github.com/harrism)
URL: #8647
Describe the bug
The upper case of the character
ʼn
should beʼN
, but getting onlyʼ
.Expected behavior
The pandas
capitalize
works as expected.There is a smiliar bug #3132 being fixed, but seems only for the
upper
andlower
.The text was updated successfully, but these errors were encountered: