numpy.char.startswith
-
char.startswith(a, prefix, start=0, end=None)
[source] -
Returns a boolean array which is
True
where the string element ina
starts withprefix
, otherwiseFalse
.Calls
str.startswith
element-wise.- Parameters
-
-
aarray_like of str or unicode
-
prefixstr
-
start, endint, optional
-
With optional
start
, test beginning at that position. With optionalend
, stop comparing at that position.
-
- Returns
-
-
outndarray
-
Array of booleans
-
See also
© 2005–2021 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/1.21/reference/generated/numpy.char.startswith.html