Splunk Search

How to extract values between two same characters using regex?

rashid47010
Communicator

How to extract the field values between two same characters.

Event 
Axxtalled=xrxnx xx Client\;**12.0.5294**\;15.179.00\;3x/x/2xx\;, 

I want to extract 12.0.5294

Tags (2)
0 Karma

vnravikumar
Champion

Hi

Try this,

| makeresults 
| eval Axxtalled="xrxnx xx Client\;12.0.5294\;15.179.00\;3x/x/2xx\;," 
| eval result = mvindex(split(Axxtalled,"\;"),1)
0 Karma

harshpatel
Contributor

Hi @rashid47010 ,

Please check this: https://regex101.com/r/l5xt9s/1

Splunk query:

| makeresults count=1 
| eval _raw="Axxtalled=xrxnx xx Client\;12.0.5294\;15.179.00\;3x/x/2xx\;," 
| rex field=_raw "\\\\;(?<myfield>[\d.]+)\\\\;"
0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...