Splunk Search

How to capture the substring of a dynamic multivalued field?

GaryZ
Path Finder

I am looking to create an acronym from a dynamic string, by capturing the first letter of each broken substring

How do I write the script, so I can capture whatever number of substrings gets generated from the original string?

 

 

ie. "Hello_World_Look_At_Me" => "HWLAM"

"Hello_World" => "HW"

 

I'm thinking of doing the following, but this seems to be pretty lengthy.  Would like to know if there's a more efficient way of getting this done.

| eval txt1 = "Hello_World_Look_At_Me"

| eval tmp = split(txt1, "_")

| eval new_word = substr(mv_index(tmp,1), 1) + ...

 

 

Labels (6)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Assuming words are always made of alphabetic letters, try something like this

| rex max_match=0 field=txt1 "(?<initial>[a-zA-Z])[a-zA-Z]*_?"
| eval new_word=mvjoin(initial,"")

View solution in original post

GaryZ
Path Finder

Thanks!!! @ITWhisperer 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Assuming words are always made of alphabetic letters, try something like this

| rex max_match=0 field=txt1 "(?<initial>[a-zA-Z])[a-zA-Z]*_?"
| eval new_word=mvjoin(initial,"")
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,  ...