Splunk Search

Regex fails as when defined as field extraction, but works with rex command. "Regex: missing terminating ] for character class"

neiljpeterson
Communicator

This works in my search:

rex field=source "\w:\\\[\w]*\\\(?<app_path>[^\\\]*)"

But when I try to define it as a field extraction I get the following error:

Encountered the following error while
trying to save: In handler
'props-extract': Regex: missing
terminating ] for character class

All the parens are clearly balanced... what is going on here?

0 Karma

gkanapathy
Splunk Employee
Splunk Employee

In the rex command, you need an extra level of escaping of the string (much like you need an extra level of escaping of characters when you specify regexes on the bash command line). But when you define a field extraction in props directly, you need to just specify the regex without the outer layer of escaping. So your base regex should be simply:

\w:\\[\w]*\\(?<app_path>[^\\]*)

Assuming you're trying to get my_app out of something like c:\base\my_app\whatever\file.txt

sk314
Builder
0 Karma
Get Updates on the Splunk Community!

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...

Stay Connected: Your Guide to October Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...