Splunk Search

How to extract a string from a particular XML tags with regular expression?

kirangurram
Explorer

Dear Experts ,
Need your help with regular expression. I have an XML tag in the field f.
I would like to extract all the characters including spaces (or) Special characters from this XML string <Rmk>.
I tried to use search | rex field=f "\<Rmk\>"(?<Rmk>\w*)"\<\/Rmk\>" , however this regular expression is not giving any output.

your help is much appreciated with this query.

XML Tag :

<Rmk>ABC*/ Work Direct---</Rmk>

Desired Output : ABC*/ Work Direct---

Tags (3)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi kirangurram,
try this regex

\<Rmk\>(?<Rmk>[^\<]*)\<\/Rmk\>

Bye.
Giuseppe

View solution in original post

woodcock
Esteemed Legend

Just add ... | spath input=f, like this:

|makeresults | eval f="<Rmk>ABC*/ Work Direct---</Rmk>"

| spath input=f
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi kirangurram,
try this regex

\<Rmk\>(?<Rmk>[^\<]*)\<\/Rmk\>

Bye.
Giuseppe

gcusello
SplunkTrust
SplunkTrust

Hi kirangurram,
if you're satisfied of this solution, please accept and/or upvote it.
See next time.
Bye.
Giuseppe

0 Karma

DavidHourani
Super Champion

didn't see you commented there Giuseppe 🙂 deleting my answer 🙂

0 Karma

kirangurram
Explorer

thanks for your help @gcusello . Your solution works.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...