join
Join combines an array of strings into a single string with a separator.
Join combines an array of strings into a single string with a separator. Defaults to newline if no separator is provided.
Input
array
Parameters
| # | Type | Required |
|---|---|---|
| 0 | string | no |
Returns
string
Examples
{{ tags | join:',' }}
{{ lines | join }}
{{ items | join:'|' }}How is this guide?