pandas.Series.str.casefold¶
Convert strings in the Series/Index to be casefolded.
New in version 0.25.0.
Equivalent to str.casefold()
.
- return
Series/Index of objects
Limitations¶
All values in Series equal to None are converted to NaNs.
- This function may reveal slower performance than Pandas* on user system. Users should exercise a tradeoff
between staying in JIT-region with that function or going back to interpreter mode.
Examples¶
import pandas as pd
from numba import njit
@njit
def series_str_casefold():
series = pd.Series(['lower', 'CAPITALS', 'this is a sentence', 'SwApCaSe'])
out_series = series.str.casefold()
return out_series # Expect series of 'lower', 'capitals', 'this is a sentence', 'swapcase'
print(series_str_casefold())
$ python ./series/str/series_str_casefold.py
0 lower
1 capitals
2 this is a sentence
3 swapcase
dtype: object
See also
- Series.str.lower
Converts all characters to lowercase.
- Series.str.upper
Converts all characters to uppercase.
- Series.str.title
Converts first character of each word to uppercase and remaining to lowercase.
- Series.str.capitalize
Converts first character to uppercase and remaining to lowercase.
- Series.str.swapcase
Converts uppercase to lowercase and lowercase to uppercase.
- Series.str.casefold
Removes all case distinctions in the string.