Splunk Search

How to remove leading periods from a field?

ajdyer2000
Path Finder

Hi I have a search that returns the following

. Adobe Acrobat XI Pro DSC

.. Adobe Flash Player ActiveX DSC
... Adobe Flash Player NPAPI
... Adobe Reader XI (..)
.. Adobe Shockwave Player
... Atmel Touchscreen Power

Is there a command that could get rid of the leading periods? They go from just one period up to three of them

0 Karma

gokadroid
Motivator

Try this please using rex assuming your fieild is called myField and data of interest will be collected in field called stringOfInterest :

your query to return events
| rex field=myField "\.+(?<stringOfInterest>.*)"
| table stringOfInterest

See Extraction here

0 Karma

jtacy
Builder

Sure, here's a standalone example of what you could do with the rex command:

| gentimes start=-1 | eval xyzzy=".. Adobe Shockwave Player" | rex field=xyzzy mode=sed "s/^\.+(\s+)?//"

This will remove any leading periods and whitespace after the periods. There are probably faster ways to do it but this should work pretty well. Good luck!

0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...