Splunk Search

How to extract 3 characters after a given string in Splunk?

avneet26
Engager

I want to extract the two characters 78 from the barvalue  and have it in a separate column in my table:-

 deltavalue = 890(11%) sigmavalue=334(56%) barvalue=445(78%)

 

 

Labels (1)
0 Karma
1 Solution

yuanliu
SplunkTrust
SplunkTrust

Your title says 3 characters, yet the opening sentence says 2 characters.  Which is it?  Also, are you trying to extract all 2-character strings before the percent sign (%) or only the last one?  Specifics are very important when you ask data questions.

Assuming that you only want the last percentage, you can do

| rex field=barvalue "\(?<barpercent>\d+)%\)"

View solution in original post

0 Karma

yuanliu
SplunkTrust
SplunkTrust

Your title says 3 characters, yet the opening sentence says 2 characters.  Which is it?  Also, are you trying to extract all 2-character strings before the percent sign (%) or only the last one?  Specifics are very important when you ask data questions.

Assuming that you only want the last percentage, you can do

| rex field=barvalue "\(?<barpercent>\d+)%\)"
0 Karma

avneet26
Engager

Ah my bad. sorry not three characters. only two numbers i want which is 78 

0 Karma

yuanliu
SplunkTrust
SplunkTrust

In that case, the code provided above should suffice. (You should have a field named barvalue.  Correct?)

0 Karma

avneet26
Engager

barvalue is the search string in my _raw field. 

 

 

0 Karma

yuanliu
SplunkTrust
SplunkTrust

@avneet26 wrote:

barvalue is the search string in my _raw field. 


Are you the admin? If not, you should ask them to make sure obvious key-value pairs are extracted; in fact, unless there is any special settings, Splunk extracts "a=b" in _raw as value "b" assigned to field "a". by default.  With that, my first code should give you a new field barpercent.

But if your admin is uncooperative, you can do something like

| rex "barvalue=\d+\((?<barpercent>\d+)%\)"

Hope this helps. 

0 Karma
Get Updates on the Splunk Community!

Splunk Lantern | Getting Started with Edge Processor, Machine Learning Toolkit ...

Splunk Lantern is Splunk’s customer success center that provides advice from Splunk experts on valuable data ...

Enterprise Security Content Update (ESCU) | New Releases

In the last month, the Splunk Threat Research Team (STRT) has had 2 releases of new security content via the ...

Announcing the 1st Round Champion’s Tribute Winners of the Great Resilience Quest

We are happy to announce the 20 lucky questers who are selected to be the first round of Champion's Tribute ...