當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python cudf.core.column.string.StringMethods.token_count用法及代碼示例


用法:

StringMethods.token_count(delimiter: str = ' ') → SeriesOrIndex

使用提供的分隔符將每個字符串拆分為標記。返回的整數序列是每個字符串中的標記數。

參數

delimiterstr 或 str 列表,默認為空格。

用於定位每個字符串的分割點的字符或字符串。

返回

係列或索引。

例子

>>> import cudf
>>> ser = cudf.Series(["hello world","goodbye",""])
>>> ser.str.token_count()
0    2
1    1
2    0
dtype: int32

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.core.column.string.StringMethods.token_count。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。