Splunk Search

"Invalid Regex: no named extraction" in the interactive field extractor

dinh
Path Finder

What is wrong with this regex?

(?P<AUTH_PIN_TYPE>[^ ]+)( [^ ]+){2}$

The interactive field extractor gives this error: Invalid regex: no named extraction at position 24 (i.e., "( [^ ]+){2..."). Expected "(?Ppattern)"

Tags (1)
0 Karma
1 Solution

gkanapathy
Splunk Employee
Splunk Employee

As far as I can see, and testing in Splunk 4.0.8 using rex, EXTRACT in props.conf, and a REPORT clause, there appears to be nothing wrong with it (assuming it correctly captures your fields). Where are you seeing this error?

Update: in the IFE, as GpMidi says, you can use only named captures, i.e., implicit captures like (...) are not accepted. If you just wish to group (without an implicit capture), use (?:...) instead. So your regex in this case would have to be:

(?P<AUTH_PIN_TYPE>[^ ]+)(?: [^ ]+){2}$

View solution in original post

dinh
Path Finder

blah blah blah MATCH_ME foo bar(end of line)

0 Karma

gkanapathy
Splunk Employee
Splunk Employee

As far as I can see, and testing in Splunk 4.0.8 using rex, EXTRACT in props.conf, and a REPORT clause, there appears to be nothing wrong with it (assuming it correctly captures your fields). Where are you seeing this error?

Update: in the IFE, as GpMidi says, you can use only named captures, i.e., implicit captures like (...) are not accepted. If you just wish to group (without an implicit capture), use (?:...) instead. So your regex in this case would have to be:

(?P<AUTH_PIN_TYPE>[^ ]+)(?: [^ ]+){2}$

dinh
Path Finder

I see it on Splunk 4.0.9(74233) when I put it in the interactive field extractor.

0 Karma

GpMidi
Explorer

I belive you need to use all named captures. ie (?P...)

0 Karma

hulahoop
Splunk Employee
Splunk Employee

Can you provide more details? What are you trying to match?

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

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...