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!

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...