从张量中去除前导和尾随空格。
用法
tf.raw_ops.StringStrip(
input, name=None
)
参数
-
input
Tensor
类型为string
。任何形状的字符串Tensor
。 -
name
操作的名称(可选)。
返回
-
Tensor
类型为string
。
例子:
tf.strings.strip(["\nTensorFlow", " The python library "]).numpy()
array([b'TensorFlow', b'The python library'], dtype=object)
相关用法
- Python tf.raw_ops.StringSplitV2用法及代码示例
- Python tf.raw_ops.StringToHashBucketStrong用法及代码示例
- Python tf.raw_ops.StringLength用法及代码示例
- Python tf.raw_ops.StringToHashBucketFast用法及代码示例
- Python tf.raw_ops.StringToNumber用法及代码示例
- Python tf.raw_ops.StringJoin用法及代码示例
- Python tf.raw_ops.StringUpper用法及代码示例
- Python tf.raw_ops.StringLower用法及代码示例
- Python tf.raw_ops.StridedSlice用法及代码示例
- Python tf.raw_ops.StatelessCase用法及代码示例
- Python tf.raw_ops.StopGradient用法及代码示例
- Python tf.raw_ops.StatelessSampleDistortedBoundingBox用法及代码示例
- Python tf.raw_ops.SelfAdjointEigV2用法及代码示例
- Python tf.raw_ops.Size用法及代码示例
- Python tf.raw_ops.ScatterUpdate用法及代码示例
- Python tf.raw_ops.ScatterNdUpdate用法及代码示例
- Python tf.raw_ops.SparseCrossV2用法及代码示例
- Python tf.raw_ops.ScatterAdd用法及代码示例
- Python tf.raw_ops.Sub用法及代码示例
- Python tf.raw_ops.SparseCross用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.raw_ops.StringStrip。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。