[Numpy-discussion] Type checking of arrays containing strings
Stéfan van der Walt
stefan@sun.ac...
Fri Jul 18 04:40:54 CDT 2008
2008/7/18 Arnar Flatberg <arnar.flatberg@gmail.com>:
> I need to check if my array (a) is of type `string`. That is, I dont know
> the number of characters beforehand, so I cant do a.dtype == '|S*' (* =
> (max) number of characters)
> Looking at my options, I see either a.dtype.kind == 'S' or a.dtype.type ==
> np.string_, might be ok. Are these any of the preffered ways, or is there
> some other way?
Maybe
np.issubdtype(x.dtype, str)
Stéfan
More information about the Numpy-discussion
mailing list