Strip leading and trailing whitespaces from the Tensor.
View aliases
Compat aliases for migration
See Migration guide for more details.
tf.compat.v1.raw_ops.StringStrip
tf.raw_ops.StringStrip(
input, name=None
)
Examples:
tf.strings.strip(["\nTensorFlow", " The python library "]).numpy()array([b'TensorFlow', b'The python library'], dtype=object)
Args | |
|---|---|
input
|
A Tensor of type string. A string Tensor of any shape.
|
name
|
A name for the operation (optional). |
Returns | |
|---|---|
A Tensor of type string.
|