Splunk Search

regex for extracting word after symbol

deeptha1992
New Member

please help me to extract the quoted word
abcd > efgh > "lmn pqr"

I tried with “(?[^>]$)" but while querying like this
|rex field=_raw “word (?[^>]
$)" showing error.

Thanks in advance

Tags (2)
0 Karma

mydog8it
Builder

I noticed the quotes in your regex are two different characters, the first pair do not match the text. Here is a suggestion that closely matches your regex:

without a named field--->       |rex field=_raw "\"(.+[^>])\"$"
with a named field --->         |rex field=_raw "\"(?<FieldName>.+[^>])\"$"
0 Karma

DavidHourani
Super Champion

Hi @deeptha1992,

Try this :

|rex field=_raw “([^>]+[>])+\s?\"(?<YourFieldName>.+)\"$"

Cheers,
David

0 Karma
Get Updates on the Splunk Community!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...