Splunk Search

How to use rex max_match resulting in only unique values

spencerneal
Explorer

Hello,

 

I am trying to get a list of values using max_match=5.  However I need the results to only return unique values and not just list 5 values regardless of them being duplicates.

| rex max_match=5 (?P<BrandID>(202\d.+?))\"

|table BrandID

Your help and energy is greatly appreciated.  🙂

Thank you,

Spencer Neal

 

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

That's not what rex does.  It just matches patterns.  If you need unique results, then insert the mvdedup function into your query.

```Get all BrandID values```
| rex max_match=0 (?P<BrandID>(202\d.+?))\"
```Filter out duplicate values ```
| eval BrandID=mvdedup(BrandID)
```Keep only the first 5 unique values```
| eval BrandID=mvindex(BrandID, 0 4)
| table BrandID

 

---
If this reply helps you, Karma would be appreciated.

View solution in original post

spencerneal
Explorer

Rich,

Thank you greatly for taking the time to help me out!!  :). Your code did the trick!!  

Thank you,

Please take care.

Spencer

richgalloway
SplunkTrust
SplunkTrust

If your problem is resolved, then please click the "Accept as Solution" button to help future readers.

---
If this reply helps you, Karma would be appreciated.

richgalloway
SplunkTrust
SplunkTrust

That's not what rex does.  It just matches patterns.  If you need unique results, then insert the mvdedup function into your query.

```Get all BrandID values```
| rex max_match=0 (?P<BrandID>(202\d.+?))\"
```Filter out duplicate values ```
| eval BrandID=mvdedup(BrandID)
```Keep only the first 5 unique values```
| eval BrandID=mvindex(BrandID, 0 4)
| table BrandID

 

---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Index This | What is broken 80% of the time by February?

December 2025 Edition   Hayyy Splunk Education Enthusiasts and the Eternally Curious!    We’re back with this ...

Unlock Faster Time-to-Value on Edge and Ingest Processor with New SPL2 Pipeline ...

Hello Splunk Community,   We're thrilled to share an exciting update that will help you manage your data more ...

Splunk MCP & Agentic AI: Machine Data Without Limits

Discover how the Splunk Model Context Protocol (MCP) Server can revolutionize the way your organization uses ...