Replace using a regex pattern: regex_replace

The regex_replace template filter replaces all occurrences of a regular expression (regex) pattern in a string with a replacement value. A regular expression is a special text pattern that describes what you are looking for; regex_replace finds every part of the string that matches and swaps it out. This works like a find-and-replace tool, but with the power of patterns instead of fixed text.

This is useful when you need to clean up or transform text from sensorsSensors return information about a thing, for instance the level of water in a tank. [Learn more] and other sources. For example, you might want to strip unwanted characters from a sensor value, reformat a phone number, remove units from a measurement string so you can convert it to a number, or clean up device names for display on a dashboard.

Usage

Here’s how to use this template function. Copy any example and adjust it to your setup.

As a filter
{{ "Hello 123 World 456" | regex_replace("\\d+", "N") }}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
Hello N World N

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.

regex_replace(
    value: str,
    find: str = "",
    replace: str = "",
    ignorecase: bool = False,
) -> str

Function parameters

The following parameters can be provided to this function.

value string Required

The string in which to perform the replacement.

find string Required

The regular expression pattern to search for. All matches will be replaced.

replace string Required

The string to replace each match with. Can be empty to remove matches entirely.

ignorecase boolean (Optional, default: false)

Set to true to make the pattern matching case-insensitive.

Removing matched text

Pass an empty string as the replacement to remove all matches from the string.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]: Strip everything except numbers and dots
{{ "Temperature: 23.5 C" | regex_replace("[^0-9.]", "") }}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
23.5

Case-insensitive replacement

Set ignorecase to true to match and replace regardless of upper or lowercase letters.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{
  "Error: DEVICE offline"
  | regex_replace("error", "Warning", ignorecase=true)
}}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
Warning: DEVICE offline

Good to know

  • Replaces every occurrence, not just the first one.
  • Backreferences in the replacement use \1, \2, and so on, to refer to capturing groups from the pattern.
  • Passing an empty replacement deletes every match from the string.

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.

Strip units from a sensor value

Remove non-numeric characters from a sensor state so you can use it as a number.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{ states("sensor.wind_speed") | regex_replace("[^0-9.]", "") | float }}
Result (floatA number that can have decimal places, like 21.5 or 3.14. Used for temperatures, percentages, and other measurements that need precision.)
15.3

Clean up a device name for display

Remove unwanted prefixes or suffixes from a device name.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{
  "MQTT - Living Room Sensor [v2]"
  | regex_replace("^MQTT - ", "")
  | regex_replace("\\s*\\[.*\\]$", "")
}}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
Living Room Sensor

Mask sensitive information

Replace digits in a phone number or account number for display purposes.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{ "+1-555-123-4567" | regex_replace("\\d(?=\\d{4})", "*") }}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
+*-***-***-4567

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.

Tip

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: