Question 154 of 500
Advanced Searching and StatisticseasyMultiple ChoiceObjective-mapped

Quick Answer

The correct answer is the `rex` command with the syntax `rex "ip=(?<ip>\d+\.\d+\.\d+\.\d+)"`. This is correct because the `rex` command in Splunk uses named capture groups defined by `(?<fieldname>...)` to extract a specific portion of the raw event into a new field; here, the pattern `\d+\.\d+\.\d+\.\d+` matches an IPv4 address and assigns it to the field named 'ip'. On the SPLK-1003 exam, this tests your understanding of regex extraction without needing to specify a source field, as `rex` defaults to `_raw`. A common trap is confusing `rex` with `erex` or forgetting that the named capture group syntax must use angle brackets, not parentheses alone. Remember the memory tip: “Angle brackets capture the brackets” — always wrap the field name in `(?<...>)` to extract it.

SPLK-1003 Advanced Searching and Statistics Practice Question

This SPLK-1003 practice question tests your understanding of advanced searching and statistics. 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.

Which command extracts a field named 'ip' from the raw event using a regex pattern?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "which command"

    Why it matters: Tests specific CLI syntax. Recall the exact command and its required context — near-synonyms and partial matches are common distractors.

Question 1easymultiple choice
Read the full NAT/PAT explanation →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

rex "ip=(?<ip>\d+\.\d+\.\d+\.\d+)"

Option B is correct because the `rex` command uses the named capture group syntax `(?<ip>...)` to extract a field named 'ip' from the raw event. The pattern `(?<ip>\d+\.\d+\.\d+\.\d+)` matches an IPv4 address and assigns it to the field 'ip'. By default, `rex` operates on the `_raw` field, so no explicit `field=_raw` is needed, and the syntax `(?<name>...)` is the correct Splunk named capture group syntax.

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.

  • rex "ip=(?\d+\.\d+\.\d+\.\d+)"

    Why it's wrong here

    This regex has an invalid group syntax (no name indicator).

  • rex "ip=(?<ip>\d+\.\d+\.\d+\.\d+)"

    Why this is correct

    This uses a valid named group and defaults to _raw, correctly extracting the IP field.

    Clue confirmation

    The clue word "which command" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • rex field=_raw "ip=(?P<ip>\d+\.\d+\.\d+\.\d+)"

    Why it's wrong here

    Splunk uses `?<name>` not `?P<name>` for named groups (Python style).

  • rex field=_raw "ip=(?<ip>\d+\.\d+\.\d+\.\d+)"

    Why it's wrong here

    The regex is correct but the field specification is redundant; however, the regex here is changed to only match two octets, so it would not correctly extract a full IP.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Splunk often tests the distinction between Splunk's `(?<name>...)` syntax and other regex flavors like Python's `(?P<name>...)` or invalid syntax like `(?name...)`, leading candidates to choose options with `?P` or missing angle brackets.

Detailed technical explanation

How to think about this question

Under the hood, Splunk's `rex` command uses the PCRE (Perl Compatible Regular Expressions) library, which supports named capture groups via the `(?<name>...)` syntax. The `field` argument in `rex` allows you to specify a different source field (e.g., `field=body`), but when omitted, it defaults to `_raw`. In real-world scenarios, you might use `rex field=_raw` to be explicit in complex searches or when chaining commands, but the core requirement is the correct named group syntax. The IPv4 pattern `\d+\.\d+\.\d+\.\d+` is a common but simplified regex; a more robust pattern would account for octet ranges (0-255), but Splunk's default extraction is often sufficient for log analysis.

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 small business has 20 workstations on the 192.168.1.0/24 network and one public IP from its ISP. The router uses PAT (NAT overload) so all 20 devices share one public address using different source ports. NAT questions test whether you understand the four address terms and which direction each translation applies.

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.

Related practice questions

Related SPLK-1003 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free SPLK-1003 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this SPLK-1003 question test?

Advanced Searching and Statistics — This question tests Advanced Searching and Statistics — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: rex "ip=(?<ip>\d+\.\d+\.\d+\.\d+)" — Option B is correct because the `rex` command uses the named capture group syntax `(?<ip>...)` to extract a field named 'ip' from the raw event. The pattern `(?<ip>\d+\.\d+\.\d+\.\d+)` matches an IPv4 address and assigns it to the field 'ip'. By default, `rex` operates on the `_raw` field, so no explicit `field=_raw` is needed, and the syntax `(?<name>...)` is the correct Splunk named capture group syntax.

What should I do if I get this SPLK-1003 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "which command". Tests specific CLI syntax. Recall the exact command and its required context — near-synonyms and partial matches are common distractors.

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 →

How Courseiva writes practice questions · Editorial policy

Last reviewed: Jun 30, 2026

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.

Loading comments…

Sign in to join the discussion.

This SPLK-1003 practice question is part of Courseiva's free Splunk 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 SPLK-1003 exam.