regex_replace vs regex_search for HTML Tag Extraction
This EX294 practice question tests your understanding of transform data with filters and plugins. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Refer to the exhibit.
```
- name: Check Apache status
hosts: webservers
tasks:
- name: Get URL content
uri:
url: http://localhost/server-status
return_content: yes
register: result
- name: Debug output
debug:
var: result
```
Output:
```
ok: [web01] => {
"result": {
"changed": false,
"content": "<html><body><h1>Apache Status</h1>...</body></html>",
"status": 200,
"url": "http://localhost/server-status"
}
}
```
Refer to the exhibit. After running the playbook, the 'content' field contains an HTML page. The team wants to extract the text inside the <h1> tags using Ansible filters. Which of the following tasks correctly extracts the content of the <h1> element?
Exhibit
Refer to the exhibit.
```
- name: Check Apache status
hosts: webservers
tasks:
- name: Get URL content
uri:
url: http://localhost/server-status
return_content: yes
register: result
- name: Debug output
debug:
var: result
```
Output:
```
ok: [web01] => {
"result": {
"changed": false,
"content": "<html><body><h1>Apache Status</h1>...</body></html>",
"status": 200,
"url": "http://localhost/server-status"
}
}
```
Why wrong: Incorrect: 'regex_search' returns the entire match or a list of groups, not a clean string.
D
set_fact: heading="{{ result.content | regex_findall('<h1>(.*)</h1>') | first }}"
Why wrong: Incorrect: 'regex_findall' returns a list of matches, but using | first is valid; however, the correct filter is 'regex_replace' to extract.
Options A and B are both correct because they use the `regex_replace` filter to replace matched text with the captured group. Option A uses a pattern that matches the entire string, so the result is exactly the heading text. Option B uses a pattern that matches only the `<h1>` tag and its content, replacing it with the inner text; in the context of extracting the heading content, this also yields the desired text, although it may leave surrounding content intact if present. Both effectively retrieve the text between the `<h1>` tags.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
Incorrect: 'regex_search' returns the entire match or a list of groups, not a clean string.
✗
set_fact: heading="{{ result.content | regex_findall('<h1>(.*)</h1>') | first }}"
Why it's wrong here
Incorrect: 'regex_findall' returns a list of matches, but using | first is valid; however, the correct filter is 'regex_replace' to extract.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The EX294 exam often tests the distinction between `regex_replace` (which replaces the entire matched string with a replacement) and `regex_search`/`regex_findall` (which return the matched string itself), leading candidates to pick options that return the full tag instead of just the inner text.
Detailed technical explanation
How to think about this question
The `regex_replace` filter in Ansible uses Python's `re.sub()` under the hood, where the replacement string can reference capture groups with `\1`, `\2`, etc. The greedy `.*` at the start and end of the pattern ensures the entire string is consumed, so the replacement yields only the captured group. This is a common technique for extracting a substring from a larger string when you want to discard everything else, but beware of greedy vs. non-greedy matching if multiple `<h1>` tags exist; in that case, `.*` would match as much as possible, potentially capturing across tags.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A practitioner preparing for the EX294 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Transform data with filters and plugins — This question tests Transform data with filters and plugins — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: set_fact: heading="{{ result.content | regex_replace('.*<h1>(.*)</h1>.*', '\1') }}" — Options A and B are both correct because they use the `regex_replace` filter to replace matched text with the captured group. Option A uses a pattern that matches the entire string, so the result is exactly the heading text. Option B uses a pattern that matches only the `<h1>` tag and its content, replacing it with the inner text; in the context of extracting the heading content, this also yields the desired text, although it may leave surrounding content intact if present. Both effectively retrieve the text between the `<h1>` tags.
What should I do if I get this EX294 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This EX294 practice question is part of Courseiva's free Red Hat certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the EX294 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.