numpy.char.split#
- char.split(a, sep=None, maxsplit=None)[source]#
对于 a 中的每个元素,返回字符串中单词的列表,使用 sep 作为分隔符字符串。
按元素调用
str.split
。- 参数:
- a类数组,具有
StringDType
、bytes_
或str_
数据类型 - 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)