pandas.Series.str#

Series.str()[源代码]#

用于 Series 和 Index 的矢量化字符串函数。

NA 保持为 NA,除非被特定方法处理。模仿了 Python 的字符串方法,并从 R 的 stringr 包中获得一些灵感。

参数:
数据系列或索引

系列或索引的内容。

参见

Series.str

Series 的矢量化字符串函数。

Index.str

用于 Index 的矢量化字符串函数

例子

>>> s = pd.Series(["A_Str_Series"])
>>> s
0    A_Str_Series
dtype: object
>>> s.str.split("_")
0    [A, Str, Series]
dtype: object
>>> s.str.replace("_", "")
0    AStrSeries
dtype: object