DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
Use the Handlebars string functions to show and manipulate strings.
This section contains information about these Handlebars functions.
| Function Name | Description |
|---|---|
| Char | Returns a character when passed an ASCII character code. |
| Concat | Concatenates strings of text. |
| IndexOf | Returns the position at which a substring occurs within a string. |
| Lowercase | Returns the provided string using only lowercase letters. |
| ProperCase | Returns specified string with the first letter of each word capitalized. |
| Replace | Replaces every occurrence of one substring with a different substring. |
| Substring | Returns a portion of a string, beginning at a specified character position. |
| Trim | Removes white space from the beginning and end of a string. |
| Uppercase | Returns the provided string using only uppercase letters. |