String operations
String operations
This module provides a set of vectorized string operations for arrays of type numpy.string_
or numpy.unicode_
. All of them are based on the string methods in the Python standard library.
String operations
add (x1, x2) | Return element-wise string concatenation for two arrays of str or unicode. |
multiply (a, i) | Return (a * i), that is string multiple concatenation, element-wise. |