String operations ================= .. currentmodule:: numpy.char .. module:: numpy.char The `numpy.char` module provides a set of vectorized string operations for arrays of type `numpy.str_` or `numpy.bytes_`. For example >>> np.char.capitalize(["python", "numpy"]) array(['Python', 'Numpy'], dtype='>> np.char.add(["num", "doc"], ["py", "umentation"]) array(['numpy', 'documentation'], dtype='