Splunk Search

How to extract the field using Regex?

kiran331
Builder

HI,

How to extract the field "AppGUID-{9BE518E6-ECC6-35A9-88E4-87755C07200F}" from the below field

ComputerName-DJ001DJKWN03-AppGUID-{9BE518E6-ECC6-35A9-88E4-87755C07200F}

Tags (1)
0 Karma
1 Solution

woodcock
Esteemed Legend

As asked:

(AppGUID-\{[^\}]+\})

As I suspect desired:

AppGUID-(?<AppGUID>\{[^\}]+\})

View solution in original post

0 Karma

aaraneta_splunk
Splunk Employee
Splunk Employee

@kiran331 - Did one of the answers below help provide a solution your question? If yes, please click “Accept” below the best answer to resolve this post and upvote anything that was helpful. If no, please leave a comment with more feedback. Thanks.

0 Karma

woodcock
Esteemed Legend

As asked:

(AppGUID-\{[^\}]+\})

As I suspect desired:

AppGUID-(?<AppGUID>\{[^\}]+\})
0 Karma

mpreddy
Communicator

try like this:

|stats c|eval _raw="ComputerName-DJ001DJKWN03-AppGUID-{9BE518E6-ECC6-35A9-88E4-87755C07200F}"|rex field=_raw "AppGUID..(?\w{8}-\w{4}-\w{4}-\w{4}-\w{12})"

0 Karma

starcher
Influencer

Assuming the field is called guid:

| rex field=guid "^ComputerName-.[^-]+-(?P[^\$]+)"

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

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 ...