numpy.char.index#
- char.index(a, sub, start=0, end=None)[source]#
Like
find, but raisesValueErrorwhen the substring is not found.- Parameters:
- aarray-like, with
StringDType,bytes_, orstr_dtype - subarray-like, with
StringDType,bytes_, orstr_dtype - start, endarray_like, with any integer dtype, optional
- aarray-like, with
- Returns:
- outndarray
Output array of ints.
Examples
>>> a = np.array(["Computer Science"]) >>> np.strings.index(a, "Science", start=0, end=None) array([9])