Splunk Search

How to edit my regular expression to extract values from a logfile that begin with "FNR" and are 10 alphanumeric characters long?

Lucas_Henry_
New Member

I'm trying to use a regular expression to grab words out of a logfile that begin with "FNR" and are exactly 10 alphanumeric characters long, and save that to a new field called ErrorCode.

The expression I've written in a PCRE generator doesn't seem to work with Splunk. It's below:

(^|)FNR.......(|$)(?P)

How do I make it work with Splunk?

0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Is that 10 characters including "FNR" or after?

Try this regex (?<ErrorCode>FNR\w{7}).

BTW, www.regex101.com seems to do a good job of validating regular expressions Splunk will handle.

---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

Is that 10 characters including "FNR" or after?

Try this regex (?<ErrorCode>FNR\w{7}).

BTW, www.regex101.com seems to do a good job of validating regular expressions Splunk will handle.

---
If this reply helps you, Karma would be appreciated.

Lucas_Henry_
New Member

Works perfectly. thank you my friend

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...