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!

Splunk Observability Cloud’s AI Assistant in Action Series: Analyzing and ...

This is the second post in our Splunk Observability Cloud’s AI Assistant in Action series, in which we look at ...

Elevate Your Organization with Splunk’s Next Platform Evolution

 Thursday, July 10, 2025  |  11AM PDT / 2PM EDT Whether you're managing complex deployments or looking to ...

Splunk Answers Content Calendar, June Edition

Get ready for this week’s post dedicated to Splunk Dashboards! We're celebrating the power of community by ...