numpy.strings.startswith#
- strings.startswith(a, prefix, start=0, end=None)[source]#
Returns a boolean array which is True where the string element in
a
starts withprefix
, otherwise False.- Parameters:
- aarray-like, with
StringDType
,bytes_
, orstr_
dtype - prefixarray-like, with
StringDType
,bytes_
, orstr_
dtype - start, endarray_like, with any integer dtype
With
start
, test beginning at that position. Withend
, stop comparing at that position.
- aarray-like, with
- Returns:
- outndarray
Output array of bools
See also