Truncate text to a length: truncate
The truncate filter shortens a string to a specified maximum length and appends an end marker (by default ...) if the string was truncated. By default, it tries to break at a word boundary so words are not cut in half.
This is useful when you need to limit the length of text for display in notifications, dashboard cards, or other contexts with limited space. For example, a sensorSensors return information about a thing, for instance the level of water in a tank. [Learn more] that provides a long description or error message can be truncated to a manageable length so it does not overflow your display.
Usage
Here’s how to use this template function. Copy any example and adjust it to your setup.
{{ "This is a very long string that should be truncated" | truncate(20) }}
This is a very...
Function signature
The signature is a technical summary of this template function. It shows the name of the function, the values (called parameters) it accepts, and what type of data each parameter expects (for example, a piece of text or a number).
Function parameters that have a = with a value after them are optional. If you leave them out, the default value shown is used automatically. Function parameters without a default are required.
truncate(
value: str,
length: int = 255,
killwords: bool = False,
end: str = "...",
leeway: int = 5,
) -> str
Function parameters
The following parameters can be provided to this function.
The maximum length of the output string, including the end marker. Defaults to 255.
If true, words may be cut in half at the exact length. If false (the default), the string is truncated at the last word boundary before the length limit.
The string to append when the text is truncated. Defaults to ....
Cutting at exact length
Set killwords to true to truncate at the exact character position, even if it is in the middle of a word.
{{ "Hello beautiful world" | truncate(12, true) }}
Hello bea...
Custom end marker
Use a different end marker instead of the default ellipsis.
{{ "A very long status message here" | truncate(20, end=" [more]") }}
A very long [more]
Good to know
- The
lengthlimit includes the end marker. Truncating to 20 characters with the default...gives you 17 characters of text plus the three-dot ending. - Strings within
leewaycharacters of the limit are returned unchanged. Setleeway=0if you want a strict cutoff every time.
Try it yourself
Ready to test this? Open Developer tools > Template, paste the example into the Template editor, and watch the result update on the right. Edit the values to see how the function adapts to your own entitiesAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more].
More examples
Real scenarios where this function comes up in automations and templates. Copy any example and adapt it to your setup.
Shorten a notification message
Truncate a long sensor message so it fits in a mobile notification.
{{ states("sensor.error_log") | truncate(80) }}
Connection timed out while attempting to reach the remote server.
Please check...
Still stuck?
The Home Assistant community is quick to help: join Discord for real-time chat, post on the community forum with your template and expected result, or share on our subreddit /r/homeassistant.
AI assistants like ChatGPT or Claude can also explain or fix templates when you describe what you want in plain language.
Related template functions
These functions work well alongside this one:
-
Wrap text at a line width: wordwrap - Wraps text at a given line width by inserting line breaks.
-
Strip whitespace: trim - Strips leading and trailing whitespace (or specified characters) from a string.