Splunk Search

Using REGEX to extract part of a combination of URLs

mdeterville
Path Finder

Hello SMEs:

I need some assistance extracting everything between the 5th and 6th "/" from URLs like the one below. 

Note: URLs may change. 

https://notify.webproxy.com/https://www.elitetools.ca/en/

Your assistance would be appreciated!

Labels (1)
0 Karma
1 Solution

thambisetty
SplunkTrust
SplunkTrust

The new value will be extracted to url field.

| rex field=<yourfield> "(?:[^\/]*\/){5}(?<url>[^\/]+)"

 

————————————
If this helps, give a like below.

View solution in original post

thambisetty
SplunkTrust
SplunkTrust

you can make use of same regex I shared above.

for example: 


1. Everything between the 3rd and 4th "/"  - lets call this "button_click"

for above: replace {5} with 4 and replace url with button_click

2. Everything between the 6th and 7th "/" - lets call this "domain_ref"

for above : replace {5} with 6 and replace url with domain_ref

————————————
If this helps, give a like below.

thambisetty
SplunkTrust
SplunkTrust

The new value will be extracted to url field.

| rex field=<yourfield> "(?:[^\/]*\/){5}(?<url>[^\/]+)"

 

————————————
If this helps, give a like below.

mdeterville
Path Finder

Thanks so much @thambisetty ! This worked well!

I was just wondering, what would the new rex's be for capturing 2 new fields:

1. Everything between the 3rd and 4th "/"  - lets call this "button_click"

2. Everything between the 6th and 7th "/" - lets call this "domain_ref"

FROM:

https://notify.webproxy.com/User_Clicked_non-business/https://www.elitetools.ca/

Note: URLS and Button click types may change.

Thanks again for your quick turnaround!

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

.conf25 Global Broadcast: Don’t Miss a Moment

Hello Splunkers, .conf25 is only a click away.  Not able to make it to .conf25 in person? No worries, you can ...

Observe and Secure All Apps with Splunk

 Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

What's New in Splunk Observability - August 2025

What's New We are excited to announce the latest enhancements to Splunk Observability Cloud as well as what is ...