String Format
Format a string using the provided format string.
The format string uses placeholders %s for its inputs, which are replaced by the input strings.
For example, the format string Hello %s, welcome to %s
with inputs Alice
and Wonderland
will
result in Hello Alice, welcome to Wonderland
. If the input is empty, the placeholder is replaced
by an empty string.
Inputs#
Port | Description |
---|---|
The format string with placeholders. | |
The input strings to replace the placeholders. |
Outputs#
Port | Description |
---|---|
Formatted String |
ID: string-fmt@v1