Splunk Search

What regular expression should I use to eliminate a character in the field value?

kiran331
Builder

Hi

What Regex do I have to use to eliminate a character in the field value?

eg:
G0:1K:BF:04:12:2C
expected: G01KBF04122C

0 Karma
1 Solution

sundareshr
Legend

Replace should do it as well

| eval newfield=replace(oldfield, ":", "")

View solution in original post

0 Karma

sundareshr
Legend

Replace should do it as well

| eval newfield=replace(oldfield, ":", "")
0 Karma

schose
Builder

regex should work as descripted. another possibility is to crate/eval a new field

your_search | eval macnew = replace(mac_field, ":","")

Regards,

Andreas

0 Karma

inventsekar
SplunkTrust
SplunkTrust

Please check this

| rex mode=sed "s/\://g"

for learnings,
mode=sed --- to update rex to use sed mode
s/ --- search for
":" ---- escaped ":"
"//" ---- replace it with "empty" string (remove)
/g ----- do this search and replace globally.

alt text

Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

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