Splunk Search

how to extract all values separately suing rex command

Puvi
New Member

hi,

i have a string like: AAA TEST BBB 1000 CCC DDD EEE FFF GG 11111
i need to extract all the values separately and display in table..
can you help me in this

Tags (2)
0 Karma

vnravikumar
Champion

Hi

Try this

| makeresults 
| eval test="AAA TEST BBB 1000 CCC DDD EEE FFF GG 11111" 
| rex field=test max_match=0 "(?<output>[^\s]+)" 
| mvexpand output 
| table output
0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

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 ...