Splunk Search

How to extract value from a string

Emily12
Explorer
  • Hi everyone

I need to extract value from a string before a specific character "_X"

 

Where X is any integer

Please note our string is like a_b_c_X

Could you please advice how can I do that 

Thank you in advance ☺️

 

Labels (2)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @Emily12,

you have to define a rule to use in a regex to identify your field.

So try something like this:

your_search
| rex "(?<your_field>.*)_\d"
| ...

that you can test at https://regex101.com/r/Fpdc7V/1

Ciao.

Giuseppe

View solution in original post

gcusello
SplunkTrust
SplunkTrust

Hi @Emily12,

you have to define a rule to use in a regex to identify your field.

So try something like this:

your_search
| rex "(?<your_field>.*)_\d"
| ...

that you can test at https://regex101.com/r/Fpdc7V/1

Ciao.

Giuseppe

Emily12
Explorer

Hi @gcusello 

Thank you so much !!

It worked perfectly 😀

0 Karma
Get Updates on the Splunk Community!

New Year, New Changes for Splunk Certifications

As we embrace a new year, we’re making a small but important update to the Splunk Certification ...

[Puzzles] Solve, Learn, Repeat: Unmerging HTML Tables

[Puzzles] Solve, Learn, Repeat: Unmerging HTML TablesFor a previous puzzle, I needed some sample data, and ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...