Splunk Search

How do you use rex to slice a string up to the white space

madisonf15
Engager

I have a string called PGM_NM. The contents of PGM_NM are "AE248 \AX0\AX0". I want to use the rex function to slice the PGM_NM string to just be AE248. So essentially I want to slice the string up to the whitespace. Thanks!

Tags (2)
0 Karma
1 Solution

muebel
SplunkTrust
SplunkTrust

Hi madisonf15,

This should work:

<generating search> | rex field=PGM_NM "(?<value>[\S]+)\s.*"

Please let me know if this answers your question!

View solution in original post

somesoni2
Revered Legend

Other options

your base search | eval PGM_NM=mvindex(split,PGM_NM," "),0) 

your base search | eval PGM_NM=replace(PGM_NM,"^(\S+)(.*)","\1")
0 Karma

muebel
SplunkTrust
SplunkTrust

Hi madisonf15,

This should work:

<generating search> | rex field=PGM_NM "(?<value>[\S]+)\s.*"

Please let me know if this answers your question!

madisonf15
Engager

I used PGM_NM as the value and it worked perfectly. Thank you very much!

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...