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!

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

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...