Handlebars custom helper – replace

Replaces all the occurrences of the specified letter in a string with another letter.

Ex:

Template – {{replace cases “&” “and”}}

Context – {“cases”: “these & those & some other cases”}

Output – these and those and some other cases

Ex:

Template – {{replace $item[*].price “,” “”}}

Context – 12,500

Output – 12500





Leave a comment

Your email address will not be published. Required fields are marked *