用法:
StringMethods.split(pat: str = None, n: int = - 1, expand: bool = None) → SeriesOrIndex
围绕给定的分隔符/分隔符拆分字符串。
在指定的分隔符字符串处从头开始拆分系列/索引中的字符串。等效于 str.split() 。
- pat:str,默认“”(空格)
要拆分的字符串,尚不支持正则表达式。
- n:int,默认 -1(全部)
限制输出中的拆分数量。
None
、0 和 -1 都将被解释为 “all splits”。- expand:布尔值,默认为 False
将拆分的字符串展开为单独的列。
- 如果
True
,返回 DataFrame/MultiIndex 扩展维度。 - 如果
False
,则返回包含字符串列表的系列/索引。
- 如果
- Series、Index、DataFrame 或 MultiIndex
类型匹配调用者,除非
expand=True
(见注释)。
参数:
返回:
注意:
n 关键字的处理取决于找到的拆分数量:
如果发现拆分 > n,则只进行前 n 个拆分
如果发现拆分 <= n,则进行所有拆分
如果对于某一行,找到的拆分数 expand=True 。
如果使用
expand=True
,Series 和 Index 调用者分别返回 DataFrame 和 MultiIndex 对象。例子:
>>> import cudf >>> data = ["this is a regular sentence", ... "https://docs.python.org/index.html", None] >>> s = cudf.Series(data) >>> s 0 this is a regular sentence 1 https://docs.python.org/index.html 2 <NA> dtype: object
在默认设置中,字符串由空格分隔。
>>> s.str.split() 0 [this, is, a, regular, sentence] 1 [https://docs.python.org/index.html] 2 None dtype: list
如果没有
n
参数,rsplit
和split
的输出是相同的。>>> s.str.rsplit() 0 [this, is, a, regular, sentence] 1 [https://docs.python.org/index.html] 2 None dtype: list
n
参数可用于限制分隔符上的拆分数量。>>> s.str.split(n=2) 0 [this, is, a regular sentence] 1 [https://docs.python.org/index.html] 2 None dtype: list
pat
参数可用于按其他字符分割。>>> s.str.split(pat="/") 0 [this is a regular sentence] 1 [https:, , docs.python.org, index.html] 2 None dtype: list
使用
expand=True
时,拆分元素将扩展为单独的列。如果存在<NA>
值,则它会在拆分期间传播到整个列。>>> s.str.split(expand=True) 0 1 2 3 4 0 this is a regular sentence 1 https://docs.python.org/index.html <NA> <NA> <NA> <NA> 2 <NA> <NA> <NA> <NA> <NA>
相关用法
- Python cudf.core.column.string.StringMethods.slice用法及代码示例
- Python cudf.core.column.string.StringMethods.slice_from用法及代码示例
- Python cudf.core.column.string.StringMethods.swapcase用法及代码示例
- Python cudf.core.column.string.StringMethods.slice_replace用法及代码示例
- Python cudf.core.column.string.StringMethods.startswith用法及代码示例
- Python cudf.core.column.string.StringMethods.strip用法及代码示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代码示例
- Python cudf.core.column.string.StringMethods.endswith用法及代码示例
- Python cudf.core.column.string.StringMethods.title用法及代码示例
- Python cudf.core.column.string.StringMethods.contains用法及代码示例
- Python cudf.core.column.string.StringMethods.rsplit用法及代码示例
- Python cudf.core.column.string.StringMethods.zfill用法及代码示例
- Python cudf.core.column.string.StringMethods.hex_to_int用法及代码示例
- Python cudf.core.column.string.StringMethods.htoi用法及代码示例
- Python cudf.core.column.string.StringMethods.character_tokenize用法及代码示例
- Python cudf.core.column.string.StringMethods.normalize_characters用法及代码示例
- Python cudf.core.column.string.StringMethods.filter_alphanum用法及代码示例
- Python cudf.core.column.string.StringMethods.ngrams用法及代码示例
- Python cudf.core.column.string.StringMethods.replace_with_backrefs用法及代码示例
- Python cudf.core.column.string.StringMethods.insert用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.core.column.string.StringMethods.split。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。