快捷方式

torcharrow.istring_column.StringMethods.split

abstract StringMethods.split(pat=None, n=- 1)

根据给定的分隔符/分隔符拆分字符串。

参数:
  • str (pat -) – 用于拆分的字符串文字,目前还不支持正则表达式。当为 None 时,根据空格拆分。

  • None (默认) – 用于拆分的字符串文字,目前还不支持正则表达式。当为 None 时,根据空格拆分。

  • int (n -) – 要执行的最大拆分次数。0 将被解释为返回所有拆分。

  • limit (默认 -1 表示没有) – 要执行的最大拆分次数。0 将被解释为返回所有拆分。

另请参阅

list.join

示例

>>> import torcharrow as ta
>>> s = ta.column(['what a wonderful world!', 'really?'])
>>> s.str.split(pat=' ')
0  ['what', 'a', 'wonderful', 'world!']
1  ['really?']
dtype: List(string), length: 2, null_count: 0
>>> s.str.split(pat=' ', n=2)
0  ['what', 'a', 'wonderful world!']
1  ['really?']
dtype: List(string), length: 2, null_count: 0

文档

访问 PyTorch 的综合开发者文档

查看文档

教程

获取针对初学者和高级开发者的深入教程

查看教程

资源

查找开发资源并获得问题的解答

查看资源