Split string by the given character.
string
character
String.
A character that delimits the substrings in this string. Default is a comma.
An Array of strings, split at each point where the separator occurs in the given string. The default is a comma.
{{split "a,b,c" ","}}{{#each (split list ',')}}<div>{{this}}</div>{{/each}} Copy
{{split "a,b,c" ","}}{{#each (split list ',')}}<div>{{this}}</div>{{/each}}
Split
string
by the givencharacter
.