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!

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

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

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