Splunk Search

How to write an expression that extracts only the first three letters of a string?

mayank101
New Member

I have a different string named:

1.  GBP:BOOT1STSUNMONTH_MAINT2
2.  AMP:BOOT1STSATMONTH_MAINT4
3.  AMP:USFIMBSWEEKENDSVRSTOP_REBOOT_POSTCHECK_Box

I want to write an expression that extracts only the first three letter of the string and then store AMP, AMS into 1 entity named as AS, other GBP into another entity named EU.
Can you please help me in writing an expression for this, I am quite new to Splunk.

0 Karma

vnravikumar
Champion

Hi

Try this

| makeresults 
| eval test="GBP:BOOT1STSUNMONTH_MAINT2,AMP:BOOT1STSATMONTH_MAINT4,AMP:USFIMBSWEEKENDSVRSTOP_REBOOT_POSTCHECK_Box" 
| makemv delim="," test 
| mvexpand test 
| rex field=test "(?P<result>^.{0,3})" 
| eval AS = if(result=="AMP" OR result == "AMS", result,"") 
| eval EU = if(result=="GBP", result,"")
0 Karma

mayank101
New Member

Hi Ravi,
Thanks for the prompt response but the problem is there are many such strings .Its not just these. There are around 1000 of strings that start with AMP or GBP under the field name called entity.I cant incorporate all the strings in the eval test function. Could you help in this case.

0 Karma

vnravikumar
Champion

For sample purpose, I had mentioned those string in test, replace the same with the actual field in the index

0 Karma

mayank101
New Member

index="nmr-eis-gl-sysm-amber"
(publisher="gl_autosys_az" entity="*boot" ).My initial query is this..so you want me to replace those string with index ("nmr-eis-gl-sysm-amber" ).So I'm query I will be using index two times

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