Search for a regex pattern: regex_search

The regex_search template filter searches for a regular expression (regex) pattern anywhere in a string. A regular expression is a special text pattern that describes what you are looking for, such as “a sequence of digits” or “the word error”. It returns true if the pattern is found anywhere in the string, and false otherwise.

This is useful when you need to check whether some text contains a particular pattern, regardless of where it appears. For example, you might want to check if a sensor’s state contains a number, see if an error message mentions a specific keyword, or test whether a device’s firmware version string includes a certain format. Unlike regex_match, which only checks the beginning of the string, regex_search scans the entire string.

Usage

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

As a filter
{{ "Temperature is 23.5 degrees" | regex_search("\\d+\\.\\d+") }}
Result (booleanA value that is either true or false. Used for on/off states, yes/no conditions, and similar binary choices.)
true

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_search(
    value: str,
    find: str = "",
    ignorecase: bool = False,
) -> bool

Function parameters

The following parameters can be provided to this function.

value string Required

The string to search within for the regex pattern.

find string Required

The regular expression pattern to search for anywhere in the string.

ignorecase boolean (Optional, default: false)

Set to true to make the search case-insensitive.

Case-insensitive searching

Set ignorecase to true to find matches 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_search("error", ignorecase=true) }}
Result (booleanA value that is either true or false. Used for on/off states, yes/no conditions, and similar binary choices.)
true

Good to know

  • Returns true or false, not the matched text. Use regex_findall to extract the match.
  • Matches anywhere in the string. Use regex_match to require a match at the start.

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.

Check if a sensor value contains a number

Test whether a sensor state that returns text includes a numeric value.

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.status_message") | regex_search("\\d+") }}
Result (booleanA value that is either true or false. Used for on/off states, yes/no conditions, and similar binary choices.)
true

Filter entities by pattern in state

Use regex_search in a condition to check if a sensor’s state mentions a specific keyword.

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]
{% if states("sensor.weather_report")
   | regex_search("rain|storm|thunder", ignorecase=true) %}
  Bad weather expected
{% else %}
  Weather looks fine
{% endif %}
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".)
Bad weather expected

Check for a version number format

Verify that a firmware version string contains a semantic version pattern.

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]
{{ "Firmware v2.4.1-beta" | regex_search("v\\d+\\.\\d+\\.\\d+") }}
Result (booleanA value that is either true or false. Used for on/off states, yes/no conditions, and similar binary choices.)
true

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: