当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cudf.core.column.string.StringMethods.slice用法及代码示例


用法:

StringMethods.slice(start: int = None, stop: int = None, step: int = None) → SeriesOrIndex

从 Series 或 Index 中的每个元素分割子字符串。

参数

start整数,可选

切片操作的起始位置。

stop整数,可选

切片操作的停止位置。

step整数,可选

切片操作的步长。

返回

str dtype 的系列/索引

来自原始字符串对象的切片子字符串的系列或索引。

例子

>>> import cudf
>>> s = cudf.Series(["koala", "fox", "chameleon"])
>>> s
0        koala
1          fox
2    chameleon
dtype: object
>>> s.str.slice(start=1)
0        oala
1          ox
2    hameleon
dtype: object
>>> s.str.slice(start=-1)
0    a
1    x
2    n
dtype: object
>>> s.str.slice(stop=2)
0    ko
1    fo
2    ch
dtype: object
>>> s.str.slice(step=2)
0      kaa
1       fx
2    caeen
dtype: object
>>> s.str.slice(start=0, stop=5, step=3)
0    kl
1     f
2    cm
dtype: object

相关用法


注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.core.column.string.StringMethods.slice。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。