Express Sweet API Reference - v3.0.0
    Preparing search index...
    • Split string by the given character.

      Parameters

      • value: string

        String.

      • separator: string

        A character that delimits the substrings in this string. Default is a comma.

      Returns string[]

      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}}