pandas.Series.str #

系列。str ( ) [来源] #

系列和索引的矢量化字符串函数。

除非通过特定方法进行其他处理,否则 NA 始终为 NA。以 Python 的 string 方法为模式,并受到 R 的 stringr 包的一些启发。

例子

>>> 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