tf.raw_ops.StringJoin
Joins the strings in the given list of string tensors into one tensor;
tf.raw_ops.StringJoin(
inputs, separator='', name=None
)
with the given separator (default is an empty separator).
Examples:
s = ["hello", "world", "tensorflow"] tf.strings.join(s, " ") <tf.Tensor: shape=(), dtype=string, numpy=b'hello world tensorflow'>
| Args | |
|---|---|
inputs | A list of at least 1 Tensor objects with type string. A list of string tensors. The tensors must all have the same shape, or be scalars. Scalars may be mixed in; these will be broadcast to the shape of non-scalar inputs. |
separator | An optional string. Defaults to "". string, an optional join separator. |
name | A name for the operation (optional). |
| Returns | |
|---|---|
A Tensor of type string. |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.4/api_docs/python/tf/raw_ops/StringJoin