Test if string contains pattern: search

The search template test checks whether a string contains a regular expression (regex) pattern anywhere within it. A regular expression is a special text pattern that lets you describe what you are looking for, such as “any number” or “the word offline”. As a template test, it is used with the is keyword, making your templates read like natural language.

This is useful in conditions and {% if %} blocks where you want to check if a value contains a certain pattern. For example, you might test whether a sensor’s state contains the word “error”, whether a notification message includes a phone number, or whether a device attribute mentions a particular model. Unlike the match test, which only checks the beginning of the string, search scans the entire string for the pattern.

Usage

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

As a test
{% if "Temperature is 23.5 degrees" is search("\\d+\\.\\d+") %}
  Contains a decimal number
{% 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".)
Contains a decimal number

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.

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.

Good to know

  • Returns true or false only. Use regex_findall to get the matched substrings.
  • Case-sensitive by default. Pass ignorecase=true to match regardless of case.

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 state contains a keyword

Test whether a sensor’s state text contains a specific word, regardless of case.

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.system_status") is search("offline", ignorecase=true) %}
  System is offline!
{% 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".)
System is offline!

Filter entities with a pattern in their state

Use the search test to find entities whose state contains a particular 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]
{% for entity in states.sensor
  if entity.state is search("error|fault|fail", ignorecase=true) %}
  {{ entity.entity_id }}: {{ entity.state }}
{% endfor %}

Check for a numeric value in text

Test whether a text-based sensor state includes any 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]
{% if states("sensor.status_message") is search("\\d+") %}
  Status contains a number
{% else %}
  Status is text only
{% 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".)
Status contains a number

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: