chararray.swapcase()
chararray.count(sub, start=0, end=None)
chararray.T Same as self.transpose(), except that self is returned if self.ndim < 2.
chararray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2
chararray.reshape(shape, order='C') Returns an array containing the same data with a new shape.
chararray.data Python buffer object pointing to the start of the array?s data.
chararray.join(seq)
chararray.decode(encoding=None, errors=None)
chararray.item(*args) Copy an element of an array to a standard Python scalar and return it.
chararray.astype(dtype, order='K', casting='unsafe', subok=True, copy=True) Copy of the array, cast
Page 1 of 8