用法:
Series.str.removeprefix(prefix)
從對象係列中刪除前綴。如果前綴不存在,將返回原始字符串。
- prefix:str
刪除字符串的前綴。
- 係列/索引:對象
刪除了給定前綴的係列或索引。
參數:
返回:
例子:
>>> s = pd.Series(["str_foo", "str_bar", "no_prefix"]) >>> s 0 str_foo 1 str_bar 2 no_prefix dtype:object >>> s.str.removeprefix("str_") 0 foo 1 bar 2 no_prefix dtype:object
>>> s = pd.Series(["foo_str", "bar_str", "no_suffix"]) >>> s 0 foo_str 1 bar_str 2 no_suffix dtype:object >>> s.str.removesuffix("_str") 0 foo 1 bar 2 no_suffix dtype:object
相關用法
- Python pandas.Series.str.removesuffix用法及代碼示例
- Python pandas.Series.str.replace用法及代碼示例
- Python pandas.Series.str.repeat用法及代碼示例
- Python pandas.Series.str.rpartition用法及代碼示例
- Python pandas.Series.str.rsplit用法及代碼示例
- Python pandas.Series.str.rstrip用法及代碼示例
- Python pandas.Series.str.isdecimal用法及代碼示例
- Python pandas.Series.str.get用法及代碼示例
- Python pandas.Series.str.endswith用法及代碼示例
- Python pandas.Series.str.isspace用法及代碼示例
- Python pandas.Series.str.isdigit用法及代碼示例
- Python pandas.Series.str.wrap用法及代碼示例
- Python pandas.Series.str.isalnum用法及代碼示例
- Python pandas.Series.str.zfill用法及代碼示例
- Python pandas.Series.str.partition用法及代碼示例
- Python pandas.Series.str.isnumeric用法及代碼示例
- Python pandas.Series.str.startswith用法及代碼示例
- Python pandas.Series.str.count用法及代碼示例
- Python pandas.Series.str.strip用法及代碼示例
- Python pandas.Series.str.islower用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Series.str.removeprefix。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。