numpy.char.split#
- char.split(a, sep=None, maxsplit=None)[源代码]#
对于 a 中的每个元素,返回字符串中的单词列表,使用 sep 作为分隔符字符串。
按元素调用
str.split
。- 参数:
- a类数组,具有
StringDType
、bytes_
或str_
dtype - sepstr 或 unicode,可选
如果未指定 sep 或为 None,则任何空白字符串都是分隔符。
- maxsplitint,可选
如果给定了 maxsplit,则最多完成 maxsplit 次拆分。
- a类数组,具有
- 返回:
- outndarray
列表对象的数组
示例
>>> import numpy as np >>> x = np.array("Numpy is nice!") >>> np.strings.split(x, " ") array(list(['Numpy', 'is', 'nice!']), dtype=object)
>>> np.strings.split(x, " ", 1) array(list(['Numpy', 'is nice!']), dtype=object)