pandas.Series.str.rsplit#
- Series.str.rsplit(pat=None, *, n=-1, expand=False)[源代码]#
根据给定的分隔符/定界符拆分字符串。
在指定分隔符字符串的末尾拆分 Series/Index 中的字符串。
- 参数:
- patstr, 可选
要分割的字符串。如果未指定,则按空白字符分割。
- nint, 默认 -1 (所有)
限制输出中的分割数量。
None
、0 和 -1 将被解释为返回所有分割。- 展开bool, 默认 False
将分割的字符串扩展到单独的列中。
如果
True
,返回 DataFrame/MultiIndex 扩展维度。如果
False
,返回 Series/Index,包含字符串列表。
- 返回:
- 系列、索引、数据框或 MultiIndex
除非 ``expand=True``(见注释),否则类型匹配调用者。
参见
Series.str.split
根据给定的分隔符/定界符拆分字符串。
Series.str.rsplit
从右边开始,根据给定的分隔符/定界符拆分字符串。
Series.str.join
使用传递的分隔符连接作为 Series/Index 元素的列表。
str.split
用于分割的标准库版本。
str.rsplit
rsplit 的标准库版本。
备注
n 关键字的处理取决于找到的分裂数:
如果找到的分裂数 > n,则只进行前 n 个分裂
如果找到的分裂 <= n,则进行所有分裂
如果对于某一行找到的分裂数 < n,如果
expand=True
,则追加 None 以填充到 n
如果使用
expand=True
,Series 和 Index 调用者分别返回 DataFrame 和 MultiIndex 对象。例子
>>> s = pd.Series( ... [ ... "this is a regular sentence", ... "https://docs.python.org/3/tutorial/index.html", ... np.nan ... ] ... ) >>> s 0 this is a regular sentence 1 https://docs.python.org/3/tutorial/index.html 2 NaN dtype: object
在默认设置中,字符串通过空白分割。
>>> s.str.split() 0 [this, is, a, regular, sentence] 1 [https://docs.python.org/3/tutorial/index.html] 2 NaN dtype: object
如果没有 n 参数,rsplit 和 split 的输出是相同的。
>>> s.str.rsplit() 0 [this, is, a, regular, sentence] 1 [https://docs.python.org/3/tutorial/index.html] 2 NaN dtype: object
n 参数可以用来限制在分隔符上的分割次数。split 和 rsplit 的输出是不同的。
>>> s.str.split(n=2) 0 [this, is, a regular sentence] 1 [https://docs.python.org/3/tutorial/index.html] 2 NaN dtype: object
>>> s.str.rsplit(n=2) 0 [this is a, regular, sentence] 1 [https://docs.python.org/3/tutorial/index.html] 2 NaN dtype: object
pat 参数可以用来按其他字符进行分割。
>>> s.str.split(pat="/") 0 [this is a regular sentence] 1 [https:, , docs.python.org, 3, tutorial, index... 2 NaN dtype: object
当使用
expand=True
时,分割的元素将展开到单独的列中。如果存在 NaN,在分割过程中它会传播到各列。>>> s.str.split(expand=True) 0 1 2 3 4 0 this is a regular sentence 1 https://docs.python.org/3/tutorial/index.html None None None None 2 NaN NaN NaN NaN NaN
对于稍微复杂一些的使用场景,比如将html文档名称与url分开,可以使用参数设置的组合。
>>> s.str.rsplit("/", n=1, expand=True) 0 1 0 this is a regular sentence None 1 https://docs.python.org/3/tutorial index.html 2 NaN NaN