Splunk Search

How to write the regex to remove the filename and only return the path from my data?

kleckns
Explorer

I'm trying to remove the filename from path and return path only in Splunk

example:

`C:\path\path\path\path\application.exe`

the path is variable length.

`| regex mypath="[^.*\/].*" |`

not only does my syntax for the command between splunk pipes not work, but the syntax for regex argument is incorrect as well. any help appreciated.

Tags (2)
1 Solution

somesoni2
Revered Legend

Give this a try

| rex field=yourfieldname  "(?<Path>.*)\\\\"

See this runanywhere splunk search

| gentimes start=-1 | eval path="C:\path\path\path\path\application.exe" | table path | rex field=path "(?<Path>.*)\\\\"

View solution in original post

judevine
Explorer

You probably already have your solution in 2021, but anyway, here's a solution:

| makeresults
| eval path="/opt/splunk/etc/system/local/inputs.conf"
| eval base_path=replace(path,"\/[^\/]+\.[^\/]+$","")
| table path base_path

0 Karma

somesoni2
Revered Legend

Give this a try

| rex field=yourfieldname  "(?<Path>.*)\\\\"

See this runanywhere splunk search

| gentimes start=-1 | eval path="C:\path\path\path\path\application.exe" | table path | rex field=path "(?<Path>.*)\\\\"

kleckns
Explorer

That worked. Thank you very much.

0 Karma
Get Updates on the Splunk Community!

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...