Splunk Search

Splunk regex help

pjtbasu
Explorer

Hi Team,

 

I've a field name uri, which has value like this --

/dev/{AccountNumber}/accountDetail

/uat/{ContentID}/content

 

I want to extract one column like, 'uriwithregex' so that I can use it later. The value of uriwithregex will be like 

/dev/*/accountDetail

/uat/*/content

So basically want to replace the string with * (Including the curly brackets)

Could someone please help ?

Labels (1)
0 Karma
1 Solution

renjith_nair
Legend

Try

|makeresults|eval urls="/dev/{AccountNumber}/accountDetail /uat/{ContentID}/content"
|makemv urls| mvexpand urls
|eval uriwithregex=urls
|rex field=uriwithregex mode=sed "s/\{.+\}/*/g"
---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

renjith_nair
Legend

Try

|makeresults|eval urls="/dev/{AccountNumber}/accountDetail /uat/{ContentID}/content"
|makemv urls| mvexpand urls
|eval uriwithregex=urls
|rex field=uriwithregex mode=sed "s/\{.+\}/*/g"
---
What goes around comes around. If it helps, hit it with Karma 🙂

pjtbasu
Explorer

Works fine. Thanks for the help

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Observability Simplified: Combining User Experience, Application Performance & ...

Tech Talk Observability Simplified: Combining User Experience, Application Performance & Network ...

Event Series May & June: From Network Visibility to Service Intelligence

Unifying the Network: Moving from Alert Noise to Service Intelligence with Splunk ITSI In today’s hybrid ...

Global Splunk User Group Events: May + June 2026

Your Splunk Community Awaits: Discover Upcoming User Group Events Worldwide    Staying ahead in the fast-paced ...