chararray.count(sub, start=0, end=None)
chararray.rsplit(sep=None, maxsplit=None)
chararray.T Same as self.transpose(), except that self is returned if self.ndim < 2.
chararray.zfill(width)
chararray.decode(encoding=None, errors=None)
chararray.swapcase()
chararray.flatten(order='C') Return a copy of the array collapsed into one dimension.
chararray.view(dtype=None, type=None) New view of array with the same data.
chararray.item(*args) Copy an element of an array to a standard Python scalar and return it.
chararray.put(indices, values, mode='raise') Set a.flat[n] = values[n] for all n
Page 1 of 8