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'>
Returns | |
---|---|
A Tensor of type string .
|