Joins the strings in the given list of string tensors into one tensor;
View aliases
Main aliases
`tf.string_join`
Compat aliases for migrationSee Migration guide for more details.
tf.compat.v1.string_join
, tf.compat.v1.strings.join
, `tf.compat.v2.strings.join`
tf.strings.join(
inputs, separator='', name=None
)
with the given separator (default is an empty separator).
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 .
|