Splunk Search

regex to replace numeric value as astreik

DataOrg
Builder

i want search search level field extraction command to replace all numeric value as astriek

Name = Dell vostro 2012 laptop wireless
Name = HP latitude laptop 20161 home station
Name is the field followd by value

I want results as
Name = Dell vostro **** laptop wireless
Name = HP latitude laptop **** home station

0 Karma
1 Solution

jpolvino
Builder

If you want to get rid of numbers, you can use sed to replace them with nothing (also removes leading space):

(your search)
| rex field=Name mode=sed "s/\s\d+//g" 

You said replace with asterisk, I believe, which would be:

(your search)
| rex field=Name mode=sed "s/\s\d+/\*/g"

View solution in original post

jpolvino
Builder

If you want to get rid of numbers, you can use sed to replace them with nothing (also removes leading space):

(your search)
| rex field=Name mode=sed "s/\s\d+//g" 

You said replace with asterisk, I believe, which would be:

(your search)
| rex field=Name mode=sed "s/\s\d+/\*/g"
Get Updates on the Splunk Community!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...