Skip to main content

Has_Specific_Textcontent

Overview​

Use this condition to check whether the current frame contains specific text. Supports plain string search and Python regular expressions. A typical use case is triggering a rule only when a frame contains a particular keyword or pattern.

How It Works​

Gets the full text content of the frame. Runs Python's re.search() against the search value. Returns true if the pattern is found anywhere in the text.

The parameter accepts any valid Python regular expression, not just plain strings.

Reference​

#NameTypeDefaultDescription
1Search ValueString-Plain text string or Python regular expression to match against the frame's text content
2(unused)
3(unused)
4(unused)