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